depth-utils.spec.ts 260 B

12345678910111213
  1. import { getDepthOfPath } from './depth-utils';
  2. describe('getDepthOfPath()', () => {
  3. it('returns 0 when the path does not include slash', () => {
  4. // when
  5. const result = getDepthOfPath('Sandbox');
  6. // then
  7. expect(result).toBe(0);
  8. });
  9. });