Move code from root of docs folder to the Create_a_simple_test folder. There is code at several pages. If all code ends in root, it will be confusing. https://www.mediawiki.org/wiki/Selenium/Getting_Started/Create_a_simple_test Bug: T368535 Change-Id: I0d2ae8118ab2425570ff996c3d95c5583f4ea278
20 lines
459 B
JavaScript
20 lines
459 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/docs/**/specs/*.js',
|
|
'tests/selenium/specs/**/*.js',
|
|
'tests/selenium/wdio-mediawiki/specs/*.js'
|
|
]
|
|
};
|