summaryrefslogtreecommitdiff
path: root/tests/async_error.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/async_error.ts')
-rw-r--r--tests/async_error.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/async_error.ts b/tests/async_error.ts
deleted file mode 100644
index 81c983a50..000000000
--- a/tests/async_error.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-console.log("hello");
-const foo = async (): Promise<never> => {
- console.log("before error");
- throw Error("error");
-};
-
-foo();
-console.log("world");