summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/eval_context_throw_with_conflicting_source.ts')
-rw-r--r--cli/tests/testdata/eval_context_throw_with_conflicting_source.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts b/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts
deleted file mode 100644
index c5bc21e48..000000000
--- a/cli/tests/testdata/eval_context_throw_with_conflicting_source.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-// deno-lint-ignore no-explicit-any
-const [, errorInfo] = (Deno as any).core.evalContext(
- '/* aaaaaaaaaaaaaaaaa */ throw new Error("foo")',
- new URL("eval_context_conflicting_source.ts", import.meta.url).href,
-);
-throw errorInfo.thrown;