diff --git a/Gruntfile.js b/Gruntfile.js index 9204c15a7d..30c0b93fdc 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -618,6 +618,14 @@ var path = require('path'), } }); + if (grunt.option('fail-fast')) { + args.push('--fail-fast'); + } + + if (grunt.option('concise')) { + args.push('--concise'); + } + grunt.util.spawn({ cmd: 'casperjs', args: args,