mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 10:59:13 +00:00
fix(test): output parallel test results independently (#15399)
This commit is contained in:
parent
e1297b1a28
commit
34328690dc
9 changed files with 160 additions and 111 deletions
|
@ -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,
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue