test: fix missing stack traces in jasmine output (#1012)

`true` is not a valid value for the `displayStacktrace` option of
jasmine-spec-reporter.
This commit is contained in:
Raphael von der Grün 2020-07-02 22:39:03 +02:00 committed by GitHub
parent cccf812454
commit ce735256d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,6 +26,6 @@ jasmine.getEnv().addReporter(new SpecReporter({
},
summary: {
displayDuration: true,
displayStacktrace: true
displayStacktrace: 'raw'
}
}));