mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeMirror
synced 2024-11-23 22:03:28 +00:00
4bb409887d
Includes a bit untangling of the setup. Concurrent tests should not overwrite each others user settings so one of the tests gets it's own user. Bug: T337862 Change-Id: Iae245063932d4c5d9e6b61c1fe102505d70c1039
14 lines
297 B
JavaScript
14 lines
297 B
JavaScript
'use strict';
|
|
|
|
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
|
|
};
|