mirror of
https://github.com/go-gitea/gitea
synced 2024-11-05 05:39:14 +01:00
7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
|
import {pathEscapeSegments} from './url.js';
|
||
|
|
||
|
test('pathEscapeSegments', () => {
|
||
|
expect(pathEscapeSegments('a/b/c')).toEqual('a/b/c');
|
||
|
expect(pathEscapeSegments('a/b/ c')).toEqual('a/b/%20c');
|
||
|
});
|