Skip to content

Commit

Permalink
fix: worker marking retry tests as started twice (#5)
Browse files Browse the repository at this point in the history
Signed-off-by: Chapman Pendery <[email protected]>
  • Loading branch information
cpendery authored Mar 1, 2024
1 parent e74df37 commit e17080d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runner/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export async function runTestWorker(
stdout,
stderr,
});
} else if (payload.startTime) {
} else if (payload.startTime && !reportStarted) {
reporter.startTest(test, {
status: "pending",
duration: 0,
Expand Down

0 comments on commit e17080d

Please sign in to comment.