summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/queue_microtask_error.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/queue_microtask_error.ts')
-rw-r--r--cli/tests/testdata/run/queue_microtask_error.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/tests/testdata/run/queue_microtask_error.ts b/cli/tests/testdata/run/queue_microtask_error.ts
deleted file mode 100644
index b2e9642c5..000000000
--- a/cli/tests/testdata/run/queue_microtask_error.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-queueMicrotask(() => {
- throw new Error("foo");
-});
-console.log(1);
-Promise.resolve().then(() => console.log(2));