diff options
author | Marvin Hagemeister <marvin@deno.com> | 2023-09-06 14:54:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-06 14:54:21 +0200 |
commit | e0a269c23af2bccfa71d7a22506a348574be138a (patch) | |
tree | 7d1f2fb11fb8c13eedb44ef1b2bbf420caea962b /cli/tests/integration/test_tests.rs | |
parent | 147c845c95bfd55548d5b5b56d70f0a616410e0d (diff) |
fix: don't show filtered test suites as running (#20385)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index 030da05e1..f84c2a560 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -278,6 +278,12 @@ itest!(clear_timeout { output: "test/clear_timeout.out", }); +itest!(hide_empty_suites { + args: "test --filter none test/pass.ts", + exit_code: 0, + output: "test/hide_empty_suites.out", +}); + itest!(finally_timeout { args: "test test/finally_timeout.ts", exit_code: 1, |