mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 10:35:48 +00:00
70128a0f21
Especially useful to reduce the job runtime here because the VE tests are executed in a couple of CI selenium jobs of other extensions. Bug: T226869 Change-Id: I8a8eae8cf2d548b7c905f00e748974bc5a88d337
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
|
|
};
|