From b5034a7ee6eb11f17fd413b5b253688c2e4a1d88 Mon Sep 17 00:00:00 2001 From: Evan Lucas Date: Fri, 14 Feb 2014 10:16:15 -0600 Subject: [PATCH] Make spec the default reporter --- Gruntfile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 2af402d..2c0c448 100644 --- a/Gruntfile.js +++ b/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']) -} \ No newline at end of file +}