-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
tech debtCode refactoringCode refactoring
Description
We have unit tests which ensure errors are thrown. This means in the test output there will be a stacktrace. Normally this is fine, but since we're using property based tests, the tests run a large number of times. So large that it usually overflows console scrollback and even github's action logs won't display the entire logs.
To reduce this output we could simply hide all of it. However, it might hide problems and make troubleshooting a little more difficult. I think ideally we could do something like show the first stacktrace and then just a count of all the other ones. Perhaps the property based testing framework we're using even has something built in for this?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
tech debtCode refactoringCode refactoring