Merge "Do not output invalid links for deleted names on Special:Contributions"
[lhc/web/wiklou.git] / tests / selenium / wdio.conf.jenkins.js
1 /* eslint no-undef: "error" */
2 /* eslint-env node */
3 'use strict';
4 var merge = require( 'deepmerge' ),
5 wdioConf = require( './wdio.conf.js' );
6
7 // Overwrite default settings
8 exports.config = merge( wdioConf.config, {
9 username: 'WikiAdmin',
10 password: 'testpass',
11 screenshotPath: '../log/',
12 baseUrl: process.env.MW_SERVER + process.env.MW_SCRIPT_PATH,
13
14 reporters: [ 'spec', 'junit' ],
15 reporterOptions: {
16 junit: {
17 outputDir: '../log/'
18 }
19 }
20 } );