summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/compat/test_runner/esm.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/compat/test_runner/esm.mjs')
-rw-r--r--cli/tests/testdata/compat/test_runner/esm.mjs9
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/tests/testdata/compat/test_runner/esm.mjs b/cli/tests/testdata/compat/test_runner/esm.mjs
deleted file mode 100644
index 54a9468a4..000000000
--- a/cli/tests/testdata/compat/test_runner/esm.mjs
+++ /dev/null
@@ -1,9 +0,0 @@
-import { strictEqual } from "assert";
-
-Deno.test("Correct assertion", () => {
- strictEqual(20, 20);
-});
-
-Deno.test("Failed assertion", () => {
- strictEqual(10, 20);
-});