Coder Social home page Coder Social logo

grunt-cucumber-js's Introduction

grunt-cucumber-js

Run all your cucumber features through Grunt.

Warning: This task requires a Grunt version of at least 0.4.0.

Getting Started

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

$ npm install grunt-cucumber --save-dev

Then add this configuration to your project's Gruntfile.js.

grunt.loadNpmTasks('grunt-cucumber');

Cucumberjs Task

Run this task with the grunt cucumberjs command.

Options

steps

Type: String

Default: ''

Require files before executing the features. If this option is not specified, all *.js and *.coffee files that are siblings or below the features will be loaded automatically. Automatic loading is disabled when this option is specified, and all loading becomes explicit.

Files under directories named "support" are always loaded first.

tags

Type: String

Default: ''

Only execute the features or scenarios with tags matching TAG_EXPRESSION. Scenarios inherit tags declared on the Feature level. The simplest TAG_EXPRESSION is simply a tag. Example: tags: '@dev'

When a tag in a tag expression starts with a ~, this represents boolean NOT. Example: tags: '~@dev'

A tag expression can have several tags separated by a comma, which represents logical OR. Example: tags: '@dev,@wip'

format

Type: String

Default: ''

How to format features (default: progress). Available formats:

  • pretty : prints the feature as is
  • progress: prints one character per scenario
  • json : prints the feature as JSON
  • summary : prints a summary only, after all scenarios were executed

modulePath

Type: String

Default: 'cucumber'

Used to set the path to Cucumber.js's lib/cucumber.js file if you don't want to load it from the npm_modules directory using the default require('cucumber'). Useful for running customized versions of Cucumber.js for a specific project. It is helpful when you need to modify the Cucumber.js lib but you can not open source the contributions.

Example: modulePath: "../../custom_libs/cucumberjs/lib/cucumber.js"

Usage Examples

Basic Use

// Project configuration.
grunt.initConfig({
  cucumberjs: {
    src: 'path/to/features',
    options: {
      steps: "path/to/step_definitions"
    }
  }
});

Bugs

Help us squash them by submitting an issue that describes how you encountered it; please be as specific as possible including operating system, node, grunt, and grunt-cucumber-js versions.

Release History

see CHANGELOG.

License

Copyright (c) 2012 "s9tpepper" Omar Gonzalez & contributors. Licensed under the MIT license.

grunt-cucumber-js's People

Contributors

s9tpepper avatar dignifiedquire avatar christian-bromann avatar

Watchers

Ionut Popa avatar Pmoranga avatar Alex Gavrishev avatar Suzana Zevri avatar James Cloos avatar Shaked Klein Orbach avatar  avatar  avatar Anton avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.