You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ra...@apache.org on 2020/07/02 20:39:40 UTC

[cordova-android] branch master updated: test: fix missing stack traces in jasmine output (#1012)

This is an automated email from the ASF dual-hosted git repository.

raphinesse pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-android.git


The following commit(s) were added to refs/heads/master by this push:
     new ce73525  test: fix missing stack traces in jasmine output (#1012)
ce73525 is described below

commit ce735256d3cd5e9329e93e354cb149590160aa10
Author: Raphael von der GrĂ¼n <ra...@gmail.com>
AuthorDate: Thu Jul 2 22:39:03 2020 +0200

    test: fix missing stack traces in jasmine output (#1012)
    
    `true` is not a valid value for the `displayStacktrace` option of
    jasmine-spec-reporter.
---
 spec/helper.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spec/helper.js b/spec/helper.js
index a4a5886..83669f3 100644
--- a/spec/helper.js
+++ b/spec/helper.js
@@ -26,6 +26,6 @@ jasmine.getEnv().addReporter(new SpecReporter({
     },
     summary: {
         displayDuration: true,
-        displayStacktrace: true
+        displayStacktrace: 'raw'
     }
 }));


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org