-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecept.conf.js
44 lines (44 loc) · 1.05 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
44
exports.config = {
output: './output',
helpers: {
Appium: {
app: '/Users/T-GAMER/Desktop/arquivo-apk/farfetch.apk',
platform: 'Android',
device: 'emulator'
}
},
include: {
initialNotificationsView: './views/initialNotifications-view.js',
homeView: './views/home-view.js',
meView: './views/me-view.js',
regionView: './views/region-view.js',
languageView: './views/language-view.js',
searchView: './views/search-view.js'
},
mocha: {},
bootstrap: null,
timeout: null,
teardown: null,
hooks: [],
gherkin: {
features: './features/*.feature',
steps: ['./step_definitions/language_steps.js','./step_definitions/region_steps.js','./step_definitions/search_steps.js','./step_definitions/initialSetup_steps.js' ]
},
plugins: {
screenshotOnFail: {
enabled: true
}
},
stepTimeout: 0,
stepTimeoutOverride: [{
pattern: 'wait.*',
timeout: 0
},
{
pattern: 'amOnPage',
timeout: 0
}
],
//tests: 'tests/*.js',
name: 'farfetch-app-automated-tests'
}