Skip to content

Commit

Permalink
Merge pull request #280 from richardmarshall/test_runtime_exceptions
Browse files Browse the repository at this point in the history
Record test runtime errors
  • Loading branch information
ysugimoto authored Mar 30, 2024
2 parents e5eca9c + c7daa87 commit 2f90b47
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tester/tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ func (t *Tester) run(testFile string) (*TestResult, error) {
Scope: s.String(),
Time: time.Since(start).Milliseconds(),
})
if err != nil {
t.counter.Fail()
}
}
}
finishChan <- cases
Expand Down

0 comments on commit 2f90b47

Please sign in to comment.