diff options
Diffstat (limited to 'cli/tests/testdata')
| -rw-r--r-- | cli/tests/testdata/test/filtered_out_only.out | 5 | ||||
| -rw-r--r-- | cli/tests/testdata/test/filtered_out_only.ts | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/cli/tests/testdata/test/filtered_out_only.out b/cli/tests/testdata/test/filtered_out_only.out new file mode 100644 index 000000000..337893848 --- /dev/null +++ b/cli/tests/testdata/test/filtered_out_only.out @@ -0,0 +1,5 @@ +running 1 test from ./test/filtered_out_only.ts +foo ... ok ([WILDCARD]) + +ok | 1 passed | 0 failed | 1 filtered out ([WILDCARD]) + diff --git a/cli/tests/testdata/test/filtered_out_only.ts b/cli/tests/testdata/test/filtered_out_only.ts new file mode 100644 index 000000000..bda301a43 --- /dev/null +++ b/cli/tests/testdata/test/filtered_out_only.ts @@ -0,0 +1,2 @@ +Deno.test("foo", () => {}); +Deno.test("bar", { only: true }, () => {}); |
