-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.detoolsrc.js
54 lines (41 loc) · 1.27 KB
/
.detoolsrc.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
45
46
47
48
49
50
51
52
53
54
export default {
// Default value — []
requiredVariables: [],
// Default value — []
beforeCreateProjects: [
// It can be a npm script as a String
// Or it can be a Function
// 'npm run before-install-create-projects',
// () => 1 + 2,
],
// Default value — Array<String>. See in "scripts/utils/config.js"
filesToCopy: undefined,
// Default value — false (Valid only for MacOS)
usePods: false,
// Default value — true
useAppium: true,
// Default value — []
afterInstall: [],
// Default value — { ios: [], android: [], podspec: [] }
additionalVariablesToBuild: {},
// Default value — { ios: '', android: '', podspec: '' }
build: {},
// Default value — { ios: [], android: [], podspec: [] }
additionalVariablesToTest: {},
// Default value — { ios: 'npm run test:ios', android: 'npm run test:android' }
test: {
ios: 'npm run test:ios',
android: 'npm run test:android',
},
// Default value — 1
runTestsCount: 30,
// Default value — true
failFast: false,
// Default value — { ios: 'iPhone 6', android: 'detools-android-5.1.1-22' }
virtualDevice: {
ios: 'iPhone 6',
android: 'zzz_nexus_6p_api_21',
},
// Default value — false
androidEmulatorNeedsWritableStorage: false,
}