Only creating account via the web interface does not work on the beta cluster, because of CAPTCHA. Bug: T323824 Change-Id: I7e9c6169f1c72450b4b620a8712629af7637f06b
19 lines
421 B
JavaScript
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'
|
|
]
|
|
};
|