1import { buildUrlForBundle } from '../buildUrlForBundle'; 2 3it(`returns an expected URL`, () => { 4 expect(buildUrlForBundle('foobar')).toEqual('/foobar'); 5}); 6it(`returns an expected URL with non standard root`, () => { 7 expect(buildUrlForBundle('/more/than/one')).toEqual('/more/than/one'); 8}); 9