0.4.0 • Published 6 years ago

@tractor-plugins/cucumber v0.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

@tractor-plugins/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-plugins/features and @tractor-plugins/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'
    }
};