Files
SCM-Manager/scm-ui/ui-webapp/src/repos/sources/components/FileTree.test.ts

11 lines
337 B
TypeScript
Raw Normal View History

import { findParent } from './FileTree';
describe('find parent tests', () => {
it('should return the parent path', () => {
expect(findParent('src/main/js/')).toBe('src/main');
expect(findParent('src/main/js')).toBe('src/main');
expect(findParent('src/main')).toBe('src');
expect(findParent('src')).toBe('');
});
});