mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
15 lines
435 B
JavaScript
15 lines
435 B
JavaScript
|
const { config } = require( './wdio.conf' );
|
||
|
|
||
|
config.specs = [ __dirname + '/features/*.feature' ];
|
||
|
config.framework = 'cucumber';
|
||
|
config.cucumberOpts = {
|
||
|
require: [
|
||
|
'./tests/selenium/features/support/*.js',
|
||
|
'./tests/selenium/features/step_definitions/index.js'
|
||
|
// search a (sub)folder for JS files with a wildcard
|
||
|
// works since version 1.1 of the wdio-cucumber-framework
|
||
|
// './src/**/*.js',
|
||
|
]
|
||
|
};
|
||
|
exports.config = config;
|