Skip to content

Commit

Permalink
test: fix missing stack traces in jasmine output (#1012)
Browse files Browse the repository at this point in the history
`true` is not a valid value for the `displayStacktrace` option of
jasmine-spec-reporter.
  • Loading branch information
raphinesse authored Jul 2, 2020
1 parent cccf812 commit ce73525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ jasmine.getEnv().addReporter(new SpecReporter({
},
summary: {
displayDuration: true,
displayStacktrace: true
displayStacktrace: 'raw'
}
}));

0 comments on commit ce73525

Please sign in to comment.