-
Notifications
You must be signed in to change notification settings - Fork 0
/
chimp.config.js
35 lines (32 loc) · 880 Bytes
/
chimp.config.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
28
29
30
31
32
33
34
35
module.exports = {
// - - - - CHIMP - - - -
watchTags: '@watch,@focus',
// - - - - CUCUMBER - - - -
path: './test/features',
singleSnippetPerFile: true,
chai: true,
screenshotsPath: '.screenshots',
captureAllStepScreenshots: false,
saveScreenshotsToDisk: true,
// Note: With a large viewport size and captureAllStepScreenshots enabled,
// you may run out of memory. Use browser.setViewportSize to make the
// viewport size smaller.
saveScreenshotsToReport: false,
jsonOutput: null,
// - - - - SELENIUM - - - -
browser: 'chrome',
// - - - - WEBDRIVER-IO - - - -
webdriverio: {
desiredCapabilities: {},
logLevel: 'silent',
// logOutput: null,
host: '127.0.0.1',
port: 4444,
path: '/wd/hub',
baseUrl: null,
coloredLogs: true,
screenshotPath: null,
waitforTimeout: 500,
waitforInterval: 250,
}
};