diff options
| -rw-r--r-- | Gruntfile.coffee | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 16b55e8ef..958ff81f8 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -1,12 +1,12 @@  module.exports = (grunt) =>    javascriptSpecPath = (path) -> -    grunt.log.writeln "IN: " + path +    grunt.log.debug "IN: " + path      path = path.replace 'app/javascript', 'spec/javascript'      if path.match /actions/        path = path.replace /actions.*/, 'actions_spec.js'      if path.match /reducers/        path = path.replace '.js', '_spec.js' -    grunt.log.writeln "OUT: " + path +    grunt.log.debug "OUT: " + path      path    grunt.initConfig @@ -37,7 +37,7 @@ module.exports = (grunt) =>      files = []      this.files.forEach (file) ->        files.push file.src -    grunt.log.writeln files +    grunt.log.debug files      grunt.util.spawn        cmd: 'node_modules/.bin/jest'        args: files | 
