We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we have to use the gulp-exit plugin to get gulp-cucumber to exit when the tests are done:
var gulp = require('gulp'), plugins = require('gulp-load-plugins')(); gulp.task('cucumber', ['env-test'], function () { return gulp.src('features/*') .pipe(plugins.cucumber({ 'steps': 'features/**/*.steps.js', 'support': 'features/support/*.js', 'format': 'pretty', 'tags': '~@ignore' })) .pipe(plugins.exit()); });
Perhaps for this reason we also do not get exit code 1 when cucumber tests fail. How are others using this plugin?
(Tried both 0.0.14 and 0.0.22)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we have to use the gulp-exit plugin to get gulp-cucumber to exit when the tests are done:
Perhaps for this reason we also do not get exit code 1 when cucumber tests fail. How are others using this plugin?
(Tried both 0.0.14 and 0.0.22)
The text was updated successfully, but these errors were encountered: