From c92717a1a43d31951cd8a1161afb766ef339aa21 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Fri, 16 Feb 2024 10:49:42 -0700 Subject: chore(cli): pre-factor the sanitizer tests (#22436) Moving tests around so that we can make #22413 smaller --- tests/testdata/test/trace_ops_caught_error/main.out | 6 ------ tests/testdata/test/trace_ops_caught_error/main.ts | 12 ------------ 2 files changed, 18 deletions(-) delete mode 100644 tests/testdata/test/trace_ops_caught_error/main.out delete mode 100644 tests/testdata/test/trace_ops_caught_error/main.ts (limited to 'tests/testdata/test/trace_ops_caught_error') diff --git a/tests/testdata/test/trace_ops_caught_error/main.out b/tests/testdata/test/trace_ops_caught_error/main.out deleted file mode 100644 index 192ed3a6d..000000000 --- a/tests/testdata/test/trace_ops_caught_error/main.out +++ /dev/null @@ -1,6 +0,0 @@ -Check file:///[WILDCARD]/trace_ops_caught_error/main.ts -running 1 test from ./test/trace_ops_caught_error/main.ts -handle thrown error in async function ... ok ([WILDCARD]) - -ok | 1 passed | 0 failed ([WILDCARD]) - diff --git a/tests/testdata/test/trace_ops_caught_error/main.ts b/tests/testdata/test/trace_ops_caught_error/main.ts deleted file mode 100644 index 8194a8b2a..000000000 --- a/tests/testdata/test/trace_ops_caught_error/main.ts +++ /dev/null @@ -1,12 +0,0 @@ -Deno.test("handle thrown error in async function", async () => { - const dirPath = Deno.makeTempDirSync(); - const filePath = `${dirPath}/file.txt`; - try { - await Deno.stat(filePath); - } catch { - await Deno.writeTextFile(filePath, ""); - } finally { - await Deno.remove(filePath); - await Deno.remove(dirPath); - } -}); -- cgit v1.2.3