forked from tipsi/tipsi-travis-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tipsirc.js
58 lines (44 loc) · 1.36 KB
/
.tipsirc.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
55
56
57
58
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,
// tipsi-stripe commands here:
// npm run set-stripe-url-type
// npm run configure
],
// 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: 'tipsi-android-5.1.1-22' }
virtualDevice: {
ios: 'iPhone 6',
android: 'zzz_nexus_6p_api_21',
},
// Default value — false
androidEmulatorNeedsWritableStorage: false,
}