mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 11:13:34 +00:00
a32999e641
Change-Id: Icabf6e065ed5685207731262db72faf848a0a04d
25 lines
683 B
JavaScript
25 lines
683 B
JavaScript
/**
|
|
* Hooks
|
|
*
|
|
* Hooks are used for setup and teardown of the environment before and after each scenario.
|
|
* It's preferable to use tags to invoke hooks rather than using the generic 'Before' and 'After'
|
|
* events, which execute before and after all scenario.
|
|
* https://github.com/cucumber/cucumber-js/blob/master/docs/support_files/hooks.md
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const { After, Before } = require( 'cucumber' );
|
|
|
|
Before( function () {
|
|
// This hook will be executed before ALL scenarios
|
|
} );
|
|
|
|
After( function () {
|
|
// This hook will be executed after ALL scenarios
|
|
} );
|
|
|
|
Before( { tags: '@foo' }, function () {
|
|
// This hook will be executed before scenarios tagged with @foo
|
|
} );
|