Skip to content

Commit

Permalink
Merge branch 'main' into chrislample/sc-20570/support-test-retries
Browse files Browse the repository at this point in the history
  • Loading branch information
clample committed Jul 24, 2024
2 parents fa47c73 + 89dce39 commit 3e0b4dd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/cli/src/commands/trigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,9 @@ export default class Trigger extends AuthCommand {
runner.on(Events.RUN_STARTED,
(checks: Array<{ check: any, sequenceId: SequenceId }>, testSessionId: string) =>
reporters.forEach(r => r.onBegin(checks, testSessionId)))
runner.on(Events.CHECK_INPROGRESS, (check: any, sequenceId: SequenceId) => {
reporters.forEach(r => r.onCheckInProgress(check, sequenceId))
})
runner.on(Events.CHECK_ATTEMPT_RESULT, (sequenceId: SequenceId, check, result, links?: TestResultsShortLinks) => {
reporters.forEach(r => r.onCheckAttemptResult(sequenceId, result, links))
})
Expand Down

0 comments on commit 3e0b4dd

Please sign in to comment.