grunt-cucumberjs
Advanced tools
Comparing version 0.8.4 to 0.8.5
@@ -41,3 +41,4 @@ /* | ||
format: 'html', | ||
cucumber: '' | ||
cucumber: '', | ||
failFast:false | ||
}, | ||
@@ -44,0 +45,0 @@ features: [] |
{ | ||
"name": "grunt-cucumberjs", | ||
"description": "Generates documentation from Cucumber features", | ||
"version": "0.8.4", | ||
"version": "0.8.5", | ||
"homepage": "https://github.com/mavdi/grunt-cucumberjs", | ||
@@ -62,2 +62,2 @@ "author": { | ||
} | ||
} | ||
} |
@@ -119,2 +119,9 @@ # grunt-cucumberjs | ||
#### options.failFast | ||
Type: `Boolean` | ||
Default: `'false'` | ||
Available: `['true', 'false']` | ||
ends the suite after the first failure | ||
#### options.debug | ||
@@ -121,0 +128,0 @@ Type: `Boolean` |
@@ -23,3 +23,4 @@ /* | ||
debug: false, | ||
debugger: false | ||
debugger: false, | ||
failFast: false | ||
}); | ||
@@ -72,2 +73,6 @@ | ||
if (options.failFast || grunt.option('fail-fast')) { | ||
commands.push('--fail-fast'); | ||
} | ||
if (options.require) { | ||
@@ -74,0 +79,0 @@ if (options.require instanceof Array) { |
45912
632
203