-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwdio.local.conf.js
27 lines (23 loc) · 873 Bytes
/
wdio.local.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
const { config: common } = require('./wdio.conf')
exports.config = Object.assign(common, {
specs: [
'./tests/resource.test.js',
'./tests/performance.test.js'
],
// If you have trouble getting all important capabilities together, check out the
// Sauce Labs platform configurator - a great tool to configure your capabilities:
// https://docs.saucelabs.com/reference/platforms-configurator
//
capabilities: [{
browserName: 'chrome',
acceptInsecureCerts: true
}],
// Test runner services
// Services take over a specific job you don't want to take care of. They enhance
// your test setup with almost no effort. Unlike plugins, they don't add new
// commands. Instead, they hook themselves up into the test process.
services: ['devtools', 'chromedriver'],
maxInstances: 2,
// logs
chromeDriverLogs: common.outputDir
})