-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchimp.js
More file actions
25 lines (24 loc) · 715 Bytes
/
chimp.js
File metadata and controls
25 lines (24 loc) · 715 Bytes
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
module.exports = {
// - - - - CUCUMBER - - - -
path: './features',
format: 'pretty',
tags: '~@ignore',
recommendedFilenameSeparator: '_',
screenshotsOnError: 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: true,
jsonOutput: 'test/report/cucumber_report.json',
// - - - - WEBDRIVER-IO - - - -
webdriverio: {
baseUrl: null,
coloredLogs: true,
screenshotPath: null,
waitforTimeout: 500,
waitforInterval: 250
}
}