From 4fe24a4f3c6bf68b2fd69de028a89842a0fe7ec8 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Wed, 10 Aug 2022 21:46:17 -0700 Subject: Log uncaught exceptions --- test/bun.js/path.test.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'test/bun.js/path.test.js') 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"), -- cgit v1.2.3