gulp-cucumber

0.0.24 • Public • Published

gulp-cucumber Build Status npm version

Gulp task for running cucumber.js features

Installation

npm install gulp-cucumber --save-dev

Using:

var cucumber = require('gulp-cucumber');
 
gulp.task('cucumber', function() {
    return gulp.src('features/*').pipe(cucumber({
        'steps': 'features/steps/steps.js',
        'format': 'summary'
    }));
});

Be aware that options.steps and options.support both accept a glob pattern or array of glob patterns (grunt-style matching) if necessary.

gulp.task('cucumber', function() {
    return gulp.src('*features/*').pipe(cucumber({
        'steps': '*features/steps/*.js',
        'support': '*features/support/*.js'
    }));
});

You have to set options.steps and options.support for preventing caching these files by require.cache


options.format supports cucumbers standard output formats : summary, pretty (default), json, progress. You can use an array for multiple formats.


options.compiler supports cucumbers compiler. <file_extension>:<module_name>


You can use options.tags to specify range of scenarios for test suite, for example:

'tags': '@auth,@profile',

This will run all scenarios tagged with @auth and all scenarios tagged with @profile. It can be string or array of strings. See more on tags here.


options.emitErrors will suppress the gulp error:

'emitErrors': false

Running tests:

$ npm test

License

The MIT License (MIT)

Copyright (c) 2014 Volodymyr Gamula v.gamula@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i gulp-cucumber

Weekly Downloads

4,638

Version

0.0.24

License

MIT

Unpacked Size

79.6 kB

Total Files

15

Last publish

Collaborators

  • vgamula