forked from sap-labs-france/ev-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecept.json
40 lines (40 loc) · 879 Bytes
/
codecept.json
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
36
37
38
39
40
{
"output": "./output",
"helpers": {
"Puppeteer": {
"url": "http://localhost:45000",
"waitForNavigation": "networkidle0",
"waitForAction": 200,
"show": true,
"restart": true,
"windowSize": "1024x1024"
},
"Mochawesome": {
"uniqueScreenshotNames": "true"
}
},
"include": {
"I": "./test/utils/Actor.js",
"loginPage": "./test/pages/LoginPage.js",
"authLayoutPage": "./test/pages/AuthLayoutPage.js",
"registerPage": "./test/pages/RegisterPage.js",
"mailboxPage": "./test/pages/MailboxPage.js"
},
"mocha": {
"reporterOptions": {
"reportDir": "output"
}
},
"bootstrap": false,
"teardown": null,
"hooks": [],
"gherkin": {},
"tests": "./test/tests/**/*Test.js",
"timeout": 10000,
"name": "ev-dashboard",
"multiple": {
"parallel": {
"chunks": 2
}
}
}