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

View File

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