From 147c845c95bfd55548d5b5b56d70f0a616410e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 6 Sep 2023 14:17:33 +0200 Subject: feat(test): Add Deno.test.ignore and Deno.test.only (#20365) Closes https://github.com/denoland/deno/issues/17106 --- cli/tests/testdata/test/only.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cli/tests/testdata/test/only.ts') 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() {}, -- cgit v1.2.3