Custom Jasmine reporter in Protractor tests

后端 未结 4 1570
旧时难觅i
旧时难觅i 2021-01-04 00:40

I can not find how to change reporter style in protractors runner using jasmine framework.

What I have right now is:

4条回答
  •  旧时难觅i
    2021-01-04 01:26

    Add the isVerbose flag to the protractor config, it's false by default:

    exports.config = {
      . . .
    
      // Options to be passed to Jasmine-node.
      jasmineNodeOpts: {
        showColors: true,
        defaultTimeoutInterval: 30000,
        isVerbose: true
      }
    };
    

提交回复
热议问题