forked from esaude/esaude-emr-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodecept.json
45 lines (42 loc) · 1.08 KB
/
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
41
42
43
44
45
{
"tests": "./test/e2eTests/**/*_test.js",
"timeout": 10000,
"output": "./test/e2eTests/output",
"helpers": {
"Puppeteer": {
"url": "http://localhost:9000",
"driver": "hosted",
"browser": "chrome",
"rootElement": "body",
"show": true
},
"REST": {
"endpoint": "http://localhost/openmrs/ws/rest/v1",
"defaultHeaders": {
"Content-Type": "application/json",
"Authorization": "Basic YWRtaW46ZVNhdWRlMTIz"
}
}
},
"hooks": [
"./test/e2eTests/hooks.js"
],
"include": {
"I": "./test/e2eTests/steps_file.js",
"Data": "./test/e2eTests/data.js",
"DashboardPage": "./test/e2eTests/pages/dashboardPage.js",
"LoginPage": "./test/e2eTests/pages/loginPage.js",
"Apis": "./test/e2eTests/rest/openMrsApis.js"
},
"bootstrap": false,
"mocha": {
"reporterOptions": {
"reportDir": "test/e2eTests/reports",
"reportFilename": "pocE2E",
"inlineAssets": true,
"reportPageTitle": "E2E Test Reports",
"reportTitle": "E2E Test Reports"
}
},
"name": "esaude-emr-poc"
}