Skip to content

Commit ce73525

Browse files
authored
test: fix missing stack traces in jasmine output (#1012)
`true` is not a valid value for the `displayStacktrace` option of jasmine-spec-reporter.
1 parent cccf812 commit ce73525

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/helper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jasmine.getEnv().addReporter(new SpecReporter({
2626
},
2727
summary: {
2828
displayDuration: true,
29-
displayStacktrace: true
29+
displayStacktrace: 'raw'
3030
}
3131
}));

0 commit comments

Comments
 (0)