diff options
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r-- | cli/tests/integration/test_tests.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cli/tests/integration/test_tests.rs b/cli/tests/integration/test_tests.rs index f4caacd6f..02c4256b1 100644 --- a/cli/tests/integration/test_tests.rs +++ b/cli/tests/integration/test_tests.rs @@ -304,12 +304,6 @@ itest!(steps_passing_steps { output: "test/steps/passing_steps.out", }); -itest!(steps_passing_steps_concurrent { - args: "test --jobs=2 test/steps/passing_steps.ts", - exit_code: 0, - output: "test/steps/passing_steps.out", -}); - itest!(steps_failing_steps { args: "test test/steps/failing_steps.ts", exit_code: 1, @@ -447,3 +441,9 @@ itest!(non_error_thrown { output: "test/non_error_thrown.out", exit_code: 1, }); + +itest!(parallel_output { + args: "test --parallel --reload test/parallel_output.ts", + output: "test/parallel_output.out", + exit_code: 1, +}); |