
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
laravel-elixir-behat
Advanced tools
This is a simple Behat wrapper around Laravel Elixir. Add it to your Elixir-enhanced Gulpfile, like so:
var elixir = require('laravel-elixir');
require('laravel-elixir-behat');
elixir(function(mix) {
mix.behat();
});
This will scan your ./tests/features/ directory, as well as any PHP classes in your 'app' folder for changes, and trigger your Behat suite.
Note: If you want your tests to execute upon file change, use the gulp tdd task
$ gulp tdd
You may pass two arguments to the behat() method.
Defaulting to './tests/features/', this argument specifies the root directory to search for Behat-specific tests. If you would like to change the default path, you can override the 'baseDir' path to point to your features directory
mix.behat('./features', { debug: true });
If you need to pass any Behat-specific options (see gulp-behat docuumentation for complete list of available options), then you may pass an object as the second argument, like so:
mix.behat(null, { debug: true });
List of additional files to watch list when perform TDD command
...
var watchList = ['./resources/views/contacts/*.blade.php']; // watch contact blade files mix.behat(null, {}, watchList);
0.0.7 Changes
watchList parameter, providing option to extend default watch files0.0.6 Changes
0.0.5 Changes
0.0.4 Updated readme, providing example for overriding 'baseDir' property
0.0.3 Minor tweaks, created npm package
0.0.2 Initial Release
laravel-elixir-behat written by Mike Erickson
E-Mail: codedungeon@gmail.com
Twitter: @codedungeon
Website: codedungeon.org
FAQs
Laravel Elixir wrapper around Behat Gulp task.
We found that laravel-elixir-behat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.