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 91443a2 commit b32caddCopy full SHA for b32cadd
test/convert.test.ts
@@ -52,9 +52,10 @@ describe("Convert", () => {
52
it("does not encode Windows drive specifiers", () => {
53
// This test only succeeds on windows. (Because of the difference in the processing method of drive characters)
54
// However, it is enough to test the windows drive character only on windows.
55
- if (process.platform === "win32") {
56
- expect(Convert.pathToUri("d:\\ee\\ff.txt")).toBe("file:///d:/ee/ff.txt")
+ if (process.platform !== "win32") {
+ pending("Only test on windows")
57
}
58
+ expect(Convert.pathToUri("d:\\ee\\ff.txt")).toBe("file:///d:/ee/ff.txt")
59
})
60
61
it("URI encodes special characters", () => {
0 commit comments