JUnitXmlReporter を使用して xml 出力ファイルを生成しようとすると、テストの実行は成功しますが、XML レポートは生成されず、テストを実行したコンソールにのみ結果が表示されます。以下は、私が使用した conf.js ファイルです。
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
capabilities: {
'browserName': 'firefox'
},
specs: ['spec1.js'],
jasmineNodeOpts: {
onComplete: null,
isVerbose: true,
showColors: true,
includeStackTrace: true
},
onPrepare: function() {
var jasmineReporters = require('C:/Users/swati.m.khandelwal/node_modules/jasmine-reporters');
jasmine.getEnv().addReporter(new jasmineReporters.JUnitXmlReporter('./output', true, true)
);
}
};
PS HTML レポート (「protractor-html-screenshot-reporter」を使用) は正常に生成できますが、XML レポートは生成できません。
この点で私を助けてください。