Skip to content

Commit

Permalink
Make spec the default reporter
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Lucas committed Feb 14, 2014
1 parent 1080fc1 commit b5034a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Gruntfile.js
@@ -1,20 +1,20 @@
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

cafemocha: {
main: {
src: 'tests/test.js',
options: {
ui: 'bdd',
reporter: grunt.option('reporter') || 'nyan',
reporter: grunt.option('reporter') || 'spec',
colors: true
}
}
}
})

grunt.loadNpmTasks('grunt-cafe-mocha')

grunt.registerTask('default', ['cafemocha'])
}
}

0 comments on commit b5034a7

Please sign in to comment.