Since the release of Laravel Elixir 5.3 the use of gulp-behat isn't really needed so I created this as a simple added that can be extended/modified
npm install laravel53-elixir-behatSince the release of Laravel Elixir 5.3 the use of gulp-behat isn't really
needed so I created this as a simple added that can be extended/modified
Simply added the following to the top of the page:
``js`
require('laravel53-elixir-behat');
You can change the configuration of where the feature files are
with:
`js`
Elixir.config.testing.behat.path = 'releative/path/to/features';
And then add to your gulp file:
```
elixir(mix => {
mix.behat();
});