4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-06-01 21:11:42 +08:00

test: fix missing stack traces in jasmine output ()

`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

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