2020-05-14 21:14:42 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
2021-05-25 17:05:10 +00:00
|
|
|
require( 'dotenv' ).config();
|
2021-05-21 11:09:13 +00:00
|
|
|
const { config } = require( 'wdio-mediawiki/wdio-defaults.conf.js' );
|
2018-03-30 16:42:04 +00:00
|
|
|
|
2021-05-21 11:09:13 +00:00
|
|
|
exports.config = { ...config,
|
2021-04-30 13:48:48 +00:00
|
|
|
// Override, or add to, the setting from wdio-mediawiki.
|
|
|
|
|
// Learn more at https://webdriver.io/docs/configurationfile/
|
2019-09-27 03:08:00 +00:00
|
|
|
//
|
2021-04-30 13:48:48 +00:00
|
|
|
// Example:
|
|
|
|
|
// logLevel: 'info',
|
2018-05-02 17:48:24 +00:00
|
|
|
|
2022-01-05 15:55:58 +00:00
|
|
|
maxInstances: 4,
|
|
|
|
|
|
2016-12-19 16:39:29 +00:00
|
|
|
specs: [
|
2021-04-30 13:48:48 +00:00
|
|
|
'tests/selenium/specs/**/*.js',
|
|
|
|
|
'tests/selenium/wdio-mediawiki/specs/*.js'
|
2022-11-25 13:42:59 +00:00
|
|
|
]
|
2021-05-21 11:09:13 +00:00
|
|
|
};
|