mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/RevisionSlider
synced 2024-12-03 11:26:14 +00:00
40de993f4c
wdio-mediawiki v1.1.1: - Includes wdio-defaults.conf.js file that vastly simplifies wdio.conf.js. - Replaces @wdio/spec-reporter with @wdio/dot-reporter. - Introduces video recording. Some part of the new setup seems to influnce they way how resize is applied to the window. The fix makes sure it works as expected. Bug: T283597 Change-Id: I20697815591243367b5a8bdd1cd1cc173a1ddc77
12 lines
278 B
JavaScript
12 lines
278 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',
|
|
};
|