aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/path.test.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-08-10 21:46:17 -0700
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-08-10 21:46:17 -0700
commit4fe24a4f3c6bf68b2fd69de028a89842a0fe7ec8 (patch)
treee3276cd3270fb1f3b6973de27a9177c3264d0e62 /test/bun.js/path.test.js
parent551cb26afbec6187c2455aa3e339c180c4eacf20 (diff)
downloadbun-4fe24a4f3c6bf68b2fd69de028a89842a0fe7ec8.tar.gz
bun-4fe24a4f3c6bf68b2fd69de028a89842a0fe7ec8.tar.zst
bun-4fe24a4f3c6bf68b2fd69de028a89842a0fe7ec8.zip
Log uncaught exceptions
Diffstat (limited to 'test/bun.js/path.test.js')
-rw-r--r--test/bun.js/path.test.js2
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"),