Skip to content

Commit 5352c67

Browse files
committed
Work around recent breaking change in Node
1 parent 6520839 commit 5352c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ describe('utils', () => {
55
describe('pathToUrlString', () => {
66
it('encode relative path like `pathToFileURL`', () => {
77
const baseURL = pathToFileURL('').toString();
8-
for (let i = 0; i < 128; i++) {
8+
for (let i = 33; i < 128; i++) {
99
const char = String.fromCharCode(i);
1010
const filename = `${i}-${char}`;
1111
expect(pathToUrlString(filename)).toEqual(

0 commit comments

Comments
 (0)