fix another test on windows

pull/1949/head
Mikael Finstad 2 years ago
parent a662ab47e0
commit 65410eab54
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -25,7 +25,7 @@ describe('file uri both platforms', () => {
test('converts path to file url', () => {
expect(pathToFileURL('/test.jpg').href).toMatch(/^file:\/{3}.*test\.jpg$/);
expect(pathToFileURL('/Users/sindresorhus/dev/te^st.jpg').href).toEqual('file:///Users/sindresorhus/dev/te^st.jpg');
expect(pathToFileURL('/Users/sindresorhus/dev/te^st.jpg').href).toMatch(/^file:\/{2}.*\/Users\/sindresorhus\/dev\/te\^st\.jpg$/);
});
test('escapes more special characters in path', () => {

Loading…
Cancel
Save