npm.io
0.4.0 • Published 8 years ago

tractor-plugin-cucumber

Licence
MIT
Version
0.4.0
Deps
8
Vulns
0
Weekly
0

tractor-plugin-cucumber

Plugin for tractor for running tests using Cucumber and Gherkin.

Greenkeeper badge npm version bitHound Overall Score Code Climate Test Coverage

How to use:

This plugin combines two other plugins, tractor-plugin-features and tractor-plugin-step-definitions

Features config:

You can add a features property to your "tractor.conf.js" file to specify where to save the feature files:

module.exports = {
    features: {
        directory: './my-features-directory'
    }
};
Step definition config:

You can add a stepDefinition property to your "tractor.conf.js" file to specify where to save the step definition files:

module.exports = {
    stepDefinition: {
        directory: './my-step-definitions-directory'
    }
};