summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/test/only.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-09-06 14:17:33 +0200
committerGitHub <noreply@github.com>2023-09-06 14:17:33 +0200
commit147c845c95bfd55548d5b5b56d70f0a616410e0d (patch)
tree29b48080ebf971533b99423f8986b30269093efe /cli/tests/testdata/test/only.ts
parent9befa566ec3ef4594fd7ffb2cbdf5b34d9705e16 (diff)
feat(test): Add Deno.test.ignore and Deno.test.only (#20365)
Closes https://github.com/denoland/deno/issues/17106
Diffstat (limited to 'cli/tests/testdata/test/only.ts')
-rw-r--r--cli/tests/testdata/test/only.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/only.ts b/cli/tests/testdata/test/only.ts
index 03c4dcac3..26b4cd425 100644
--- a/cli/tests/testdata/test/only.ts
+++ b/cli/tests/testdata/test/only.ts
@@ -9,6 +9,11 @@ Deno.test({
fn() {},
});
+Deno.test.only({
+ name: "only2",
+ fn() {},
+});
+
Deno.test({
name: "after",
fn() {},