summaryrefslogtreecommitdiff
path: root/cli/tests/integration/test_tests.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2022-08-04 17:38:40 +0100
committerGitHub <noreply@github.com>2022-08-04 12:38:40 -0400
commit34328690dc2090fd9282337aca1df74cbf837cab (patch)
treee2a266d39f6ab9326b10946f18c4c73a02f97185 /cli/tests/integration/test_tests.rs
parente1297b1a285801f3c3ee911ddbd0afde153a8b6f (diff)
fix(test): output parallel test results independently (#15399)
Diffstat (limited to 'cli/tests/integration/test_tests.rs')
-rw-r--r--cli/tests/integration/test_tests.rs12
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,
+});