私はmochaテストを実行するためにgruntを使用していますが、問題はこのタスクがレポートを生成していますが、このHTMLレポートを実行すると表示されます。テキストで実行中のログ... にテスト集計が表示され、mocha unit testが実行されます。ここでは何が欠けていますか? Iパッケージに grunt.loadNpmTasks( '面倒-モカテスト')を使用mochaテスト用のgruntレポートを提供します
mochaTest: {
test: {
options: {
reporter: 'spec',
colors: true,
summery: true,
captureFile: 'results.html', // Optionally capture the reporter output to a file
quiet: false, // Optionally suppress output to standard out (defaults to false)
clearRequireCache: true // Optionally clear the require cache before running tests (defaults to false)
},
src: ['test/*spec.js'],
excludes: ['plugins']
},
'travis-cov': {
options: {
reporter: 'travis-cov'
}
}
},
。
https://github.com/pghalliday/grunt-mocha-test
私はこのまたは私は使用することができ、他の素敵なHTMLレポートのように報告したい...
することができます[mochawesome](https://github.com/adamgruber/mochawesome)を使用してください。あなたのレポーターを 'mochawesome'に変更してください! –
@IsmailRBOUH - うまく見えますが、GRUNTでどのように使用するかの例を挙げることができますか? –
ちょうど 'npm install --save-dev mochawesome'を変更し、' reporter: 'spec'、 '' reporter: 'mochawesome'、 '、' grunt-mocha-test'で残りを行います! –