jasmine-spec-reporter

Custom Jasmine reporter in Protractor tests

百般思念 提交于 2019-12-18 18:51:29
问题 I can not find how to change reporter style in protractors runner using jasmine framework. What I have right now is: But I would like something more like: Is there a way to add custom reporter for jasmine that would show current test running instead of DOTS and Fs? 回答1: I am building a jasmine reporter that does exactly what you want, jasmine-spec-reporter. 回答2: Add the isVerbose flag to the protractor config, it's false by default: exports.config = { . . . // Options to be passed to Jasmine

Custom Jasmine reporter in Protractor tests

久未见 提交于 2019-11-30 17:19:48
I can not find how to change reporter style in protractors runner using jasmine framework. What I have right now is: But I would like something more like: Is there a way to add custom reporter for jasmine that would show current test running instead of DOTS and Fs? I am building a jasmine reporter that does exactly what you want, jasmine-spec-reporter . fer 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 } }; Automation