-
Notifications
You must be signed in to change notification settings - Fork 0
/
.detoxrc.json
43 lines (43 loc) · 1.07 KB
/
.detoxrc.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
{
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"artifacts": {
"rootDir": "./e2e/artifacts/",
"pathBuilder": "./e2e/config/testpathbuilder.js",
"plugins": {
"screenshot": {
"enabled": true,
"shouldTakeAutomaticSnapshots": false,
"keepOnlyFailedTestsArtifacts": true,
"takeWhen": {
"testStart": false,
"testDone": false,
"appNotReady": false
}
},
"video": {
"simulator": {
"codec": "hevc"
}
}
}
},
"configurations": {
"ios": {
"type": "ios.simulator",
"name": "MySkills",
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/myskills.app",
"build": "xcodebuild -workspace ios/myskills.xcworkspace -scheme myskills -sdk iphonesimulator -derivedDataPath ios/build",
"device": {
"type": "iPhone 11"
}
},
"android": {
"type": "android.emulator",
"binaryPath": "SPECIFY_PATH_TO_YOUR_APP_BINARY",
"device": {
"avdName": "Pixel_2_API_29"
}
}
}
}