forked from json-editor/json-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodecept.conf.js
More file actions
35 lines (35 loc) · 816 Bytes
/
codecept.conf.js
File metadata and controls
35 lines (35 loc) · 816 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
26
27
28
29
30
31
32
33
34
35
exports.config = {
tests: './tests/codeceptjs/**/*_test.js',
timeout: 10000,
output: './e2e/output',
helpers: {
Puppeteer: {
browser: 'chrome',
url: 'localhost:9001/tests/pages/',
show: true,
disableScreenshots: false,
waitForNavigation: 'networkidle0',
waitForAction: 200,
restart: false,
chrome: {
args: ['--ignore-certificate-errors', '--no-sandbox']
}
},
customHelpers: {
require: './config/codeceptjs_helpers.js'
}
},
include: {
I: './tests/codeceptjs/steps_file.js'
},
bootstrap: null,
mocha: {
reporterOptions: {
reportDir: './e2e/reports',
inlineAssets: true,
reportPageTitle: 'E2E Test Reports',
reportTitle: 'E2E Test Reports'
}
},
name: 'codeceptjs-json-editor'
}