We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6520839 commit 5352c67Copy full SHA for 5352c67
lib/src/utils.test.ts
@@ -5,7 +5,7 @@ describe('utils', () => {
5
describe('pathToUrlString', () => {
6
it('encode relative path like `pathToFileURL`', () => {
7
const baseURL = pathToFileURL('').toString();
8
- for (let i = 0; i < 128; i++) {
+ for (let i = 33; i < 128; i++) {
9
const char = String.fromCharCode(i);
10
const filename = `${i}-${char}`;
11
expect(pathToUrlString(filename)).toEqual(
0 commit comments