axios-miniprogram/__tests__/helpers/combineURL.spec.ts

9 lines
254 B
TypeScript
Raw Normal View History

2020-04-20 10:34:16 +08:00
import combineURL from '../../src/helpers/combineURL';
describe('测试 src/helpers/combineURL.ts', () => {
it('run', () => {
expect(combineURL('1/2', '3/4')).toBe('1/2/3/4');
expect(combineURL('1/2///', '////3/4')).toBe('1/2/3/4');
});
});