-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcodecept.json
46 lines (46 loc) · 1.09 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
46
{
"output": "./output",
"helpers": {
"WebDriverIO": {
"url": "http://simple-form-bootstrap.plataformatec.com.br",
"browser": "chrome"
},
"MyHelper": {
"require": "./helpers/custom_helpers.js",
"defaultHost": "http://mysite.com"
},
"Mochawesome": {
"uniqueScreenshotNames": "true"
}
},
"include": {
"I": "./steps_file.js",
"landingPage": "./pages/landingPage.js",
"landingPageStep": "./steps/LandingPage.js",
"landingPageFragment": "./fragments/LandingPage.js"
},
"mocha": {
"reporterOptions": {
"reportDir": "output",
"mochaFile": "output/result.xml"
}
},
"bootstrap": "./util/bootstrapAndTeardown/selenium-standalone-start.js",
"teardown": "./util/bootstrapAndTeardown/selenium-standalone-stop.js",
"hooks": ["./util/custom_hooks/event_listener.js"],
"tests": "./spec/s*_test.js",
"timeouts": {
"script" : 60000,
"page load": 10000
},
"name": "codeceptjs-init",
"multiple": {
"smoke": {
"grep": "@smoke",
"browsers": [
"chrome",
"firefox"
]
}
}
}