You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

url.test.js 201B

123456
  1. import {pathEscapeSegments} from './url.js';
  2. test('pathEscapeSegments', () => {
  3. expect(pathEscapeSegments('a/b/c')).toEqual('a/b/c');
  4. expect(pathEscapeSegments('a/b/ c')).toEqual('a/b/%20c');
  5. });