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 2021/06/08 08:40:40 UTC

[cordova-common] branch master updated: test: fix invalid config for jasmine-spec-reporter (#161)

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-common.git


The following commit(s) were added to refs/heads/master by this push:
     new 614f867  test: fix invalid config for jasmine-spec-reporter (#161)
614f867 is described below

commit 614f867c660cd354234a8b02acf610a22b82a16b
Author: Raphael von der GrĂ¼n <ra...@gmail.com>
AuthorDate: Tue Jun 8 10:40:29 2021 +0200

    test: fix invalid config for jasmine-spec-reporter (#161)
    
    Fixes the following warning:
        WARN: jasmine-spec-reporter 'displayStacktrace' option supports
        value ('none', 'raw', 'pretty'), default to 'none'
---
 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