A grunt task to run behat BDD tests.
npm install grunt-behatA [grunt]: https://github.com/cowboy/grunt task to run your [Behat]: http://behat.org/ BDD tests
npm install grunt-behatThen add this line to your project's grunt.js gruntfile:
``javascript`
grunt.loadNpmTasks('grunt-behat');
[grunt]: https://github.com/cowboy/grunt
[getting_started]: https://github.com/cowboy/grunt/blob/master/docs/getting_started.md
targets if a target is not specified.###Example Config
`javascript
grunt.initConfig({
behat: {
example: {
options: {
output: false,
failOnUndefined: false,
failOnFailed: false
},
features: 'features/',
flags: '-f pretty'
},
example2: {
features: 'features/',
}
}
});
``####Features
Set this to be the path to your features directory
####Options
Options can be used to set when the task should fail and the output that will be displayed when its does.
####Flags
The flags can be used to configure Behat, see http://docs.behat.org/guides/6.cli.html for the flags that behat accepts.