diff options
Diffstat (limited to 'test/bun.js/path.test.js')
-rw-r--r-- | test/bun.js/path.test.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/bun.js/path.test.js b/test/bun.js/path.test.js index 997368150..72dad93d2 100644 --- a/test/bun.js/path.test.js +++ b/test/bun.js/path.test.js @@ -368,9 +368,7 @@ it("path.normalize", () => { strictEqual(path.posix.normalize("bar/foo../../baz"), "bar/baz"); strictEqual(path.posix.normalize("bar/foo../"), "bar/foo../"); strictEqual(path.posix.normalize("bar/foo.."), "bar/foo.."); - console.log("A"); strictEqual(path.posix.normalize("../foo../../../bar"), "../../bar"); - console.log("B"); strictEqual(path.posix.normalize("../.../.././.../../../bar"), "../../bar"); strictEqual( path.posix.normalize("../../../foo/../../../bar"), |