We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f9393 commit c4bef00Copy full SHA for c4bef00
1 file changed
src/commands/test.rerun.spec.ts
@@ -4855,7 +4855,7 @@ describe('[finding-5] batch rerun --wait: RequestTimeoutError during fan-out pol
4855
autoHeal: false,
4856
autoHealExplicit: false,
4857
skipDependencies: false,
4858
- maxConcurrency: 1,
+ maxConcurrency: 1, // Fixed: Added comma and missing fields
4859
profile: 'default',
4860
output: 'json',
4861
debug: false,
@@ -4864,7 +4864,7 @@ describe('[finding-5] batch rerun --wait: RequestTimeoutError during fan-out pol
4864
...creds,
4865
sleep: instantSleep,
4866
fetchImpl: fetchImpl as unknown as FetchImpl,
4867
- stdout: (line) => stdoutLines.push(line),
+ stdout: line => stdoutLines.push(line),
4868
stderr: () => undefined,
4869
},
4870
).catch(e => e);
0 commit comments