switch to dots reporter in grunt

This commit is contained in:
spalger 2015-07-28 06:45:06 -07:00
parent 5705f1a5d1
commit 6e03b58665
2 changed files with 2 additions and 1 deletions

View file

@ -27,7 +27,7 @@ module.exports = function (config) {
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
reporters: ['progress', 'growl'],
// web server port

View file

@ -3,6 +3,7 @@ module.exports = function (grunt) {
unit: {
configFile: 'karma.conf.js',
singleRun: true,
reporters: 'dots',
browsers: [
'<%= karmaBrowser %>'
]