summaryrefslogtreecommitdiff
path: root/cli/tests/integration
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-08-24 23:23:29 +0800
committerGitHub <noreply@github.com>2021-08-24 17:23:29 +0200
commita7240c5091e757da1285c2f655796d4e62e54bb3 (patch)
tree403e6c36dcf8816f207b51f51a80667f1b2e3acb /cli/tests/integration
parent7ae30bcc89829a8e4d101deeb3a977f488ef7a12 (diff)
feat(cli): add --ignore flag to test command (#11712)
Diffstat (limited to 'cli/tests/integration')
-rw-r--r--cli/tests/integration/test_tests.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs
index 355a3c261..971e756a9 100644
--- a/cli/tests/integration/test_tests.rs
+++ b/cli/tests/integration/test_tests.rs
@@ -49,6 +49,12 @@ itest!(fail {
output: "test/fail.out",
});
+itest!(collect {
+ args: "test --ignore=test/collect/ignore test/collect",
+ exit_code: 0,
+ output: "test/collect.out",
+});
+
itest!(load_unload {
args: "test test/load_unload.ts",
exit_code: 0,