diff options
Diffstat (limited to 'test/js/node/path/path.test.js')
-rw-r--r-- | test/js/node/path/path.test.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/js/node/path/path.test.js b/test/js/node/path/path.test.js index 0df4f5abb..47d16fee0 100644 --- a/test/js/node/path/path.test.js +++ b/test/js/node/path/path.test.js @@ -628,8 +628,6 @@ it("path.resolve", () => { }); it("path.parse", () => { - expect(path.parse("/tmp")).toStrictEqual({ root: "/", dir: "/", base: "tmp", ext: "", name: "tmp" }); - expect(path.parse("/tmp/test.txt")).toStrictEqual({ root: "/", dir: "/tmp", |