From 34328690dc2090fd9282337aca1df74cbf837cab Mon Sep 17 00:00:00 2001 From: Nayeem Rahman Date: Thu, 4 Aug 2022 17:38:40 +0100 Subject: fix(test): output parallel test results independently (#15399) --- cli/tests/integration/test_tests.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cli/tests/integration') 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, +}); -- cgit v1.2.3