summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/only.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/test/only.ts')
-rw-r--r--cli/tests/testdata/test/only.ts20
1 files changed, 0 insertions, 20 deletions
diff --git a/cli/tests/testdata/test/only.ts b/cli/tests/testdata/test/only.ts
deleted file mode 100644
index 26b4cd425..000000000
--- a/cli/tests/testdata/test/only.ts
+++ /dev/null
@@ -1,20 +0,0 @@
-Deno.test({
- name: "before",
- fn() {},
-});
-
-Deno.test({
- only: true,
- name: "only",
- fn() {},
-});
-
-Deno.test.only({
- name: "only2",
- fn() {},
-});
-
-Deno.test({
- name: "after",
- fn() {},
-});