0.4.0 • Published 7 years ago
tractor-plugin-cucumber v0.4.0
tractor-plugin-cucumber
Plugin for tractor for running tests using Cucumber and Gherkin.
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'
}
};