diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-01-18 15:02:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 15:02:56 -0500 |
commit | 0f3a53e5d477ca2c422ed58a65bd368d1eb0a5b2 (patch) | |
tree | 43e8199a4b5831c01bfefd439b53a2098ee4805d /cli/tests/integration/test_tests.rs | |
parent | ce52bfc59c6700e64dbe941485d078ceb9dd2158 (diff) |
feat: stabilize test steps API (#13400)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index 639b664c1..53dbb07d3 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -222,37 +222,31 @@ itest!(aggregate_error { }); itest!(steps_passing_steps { - args: "test --unstable test/steps/passing_steps.ts", + args: "test test/steps/passing_steps.ts", exit_code: 0, output: "test/steps/passing_steps.out", }); itest!(steps_passing_steps_concurrent { - args: "test --unstable --jobs=2 test/steps/passing_steps.ts", + args: "test --jobs=2 test/steps/passing_steps.ts", exit_code: 0, output: "test/steps/passing_steps.out", }); itest!(steps_failing_steps { - args: "test --unstable test/steps/failing_steps.ts", + args: "test test/steps/failing_steps.ts", exit_code: 1, output: "test/steps/failing_steps.out", }); itest!(steps_ignored_steps { - args: "test --unstable test/steps/ignored_steps.ts", + args: "test test/steps/ignored_steps.ts", exit_code: 0, output: "test/steps/ignored_steps.out", }); itest!(steps_invalid_usage { - args: "test --unstable test/steps/invalid_usage.ts", + args: "test test/steps/invalid_usage.ts", exit_code: 1, output: "test/steps/invalid_usage.out", }); - -itest!(steps_no_unstable_flag { - args: "test test/steps/no_unstable_flag.ts", - exit_code: 1, - output: "test/steps/no_unstable_flag.out", -}); |