summaryrefslogtreecommitdiff
path: root/tests/testdata/run/error_cause_recursive.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/run/error_cause_recursive.ts')
-rw-r--r--tests/testdata/run/error_cause_recursive.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/testdata/run/error_cause_recursive.ts b/tests/testdata/run/error_cause_recursive.ts
deleted file mode 100644
index a6999b1ff..000000000
--- a/tests/testdata/run/error_cause_recursive.ts
+++ /dev/null
@@ -1,4 +0,0 @@
-const x = new Error("foo");
-const y = new Error("bar", { cause: x });
-x.cause = y;
-throw y;