wiki.techinc.nl/tests/selenium/wdio.conf.js
Željko Filipin f4a4b07500 selenium: Run most tests targeting the beta cluster
Only creating account via the web interface does not work on the beta
cluster, because of CAPTCHA.

Bug: T323824
Change-Id: I7e9c6169f1c72450b4b620a8712629af7637f06b
2022-11-30 15:13:08 +00:00

19 lines
421 B
JavaScript

'use strict';
require( 'dotenv' ).config();
const { config } = require( 'wdio-mediawiki/wdio-defaults.conf.js' );
exports.config = { ...config,
// Override, or add to, the setting from wdio-mediawiki.
// Learn more at https://webdriver.io/docs/configurationfile/
//
// Example:
// logLevel: 'info',
maxInstances: 4,
specs: [
'tests/selenium/specs/**/*.js',
'tests/selenium/wdio-mediawiki/specs/*.js'
]
};