-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodecept.conf.js
43 lines (43 loc) · 1.03 KB
/
codecept.conf.js
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
exports.config = {
tests: './tests/e2e/*.test.js',
output: './output/e2e',
helpers: {
Puppeteer: {
url: 'http://localhost:8080',
show: true,
},
Mochawesome: {
uniqueScreenshotNames: true,
},
},
include: {
search: './tests/e2e/pageObjects/search.js',
menu: './tests/e2e/pageObjects/menu.js',
busItem: './tests/e2e/pageObjects/busItem.js',
map: './tests/e2e/pageObjects/map.js',
app: './tests/e2e/pageObjects/app.js',
},
gherkin: {
features: './tests/e2e/features/*.feature',
steps: [
'./tests/e2e/step_definitions/steps.js',
'./tests/e2e/step_definitions/menu.steps.js',
'./tests/e2e/step_definitions/search.steps.js',
'./tests/e2e/step_definitions/favorite.steps.js',
'./tests/e2e/step_definitions/map.steps.js',
],
},
plugins: {
stepByStepReport: {
enabled: true,
},
},
bootstrap: null,
mocha: {
reporterOptions: {
reportDir: './output',
reportFilename: 'report',
},
},
name: 'open-olhovivo',
};