-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 KB
/
package.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
44
45
46
47
48
49
50
51
{
"name": "loop-ui-tests",
"version": "1.0.0",
"scripts": {
"test": "jest",
"test_e2e": "source ./scripts/test.sh $BUILD_DIR $CONFIG $NAME",
"build_loop": "source ./scripts/build_loop.sh $BUILD_TAG",
"lint": "eslint 'src/**'"
},
"devDependencies": {
"detox-recorder": "1.0.151",
"eslint": "7.18.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "^28.1.3",
"jest-html-reporters": "2.1.0",
"jest-junit": "10.0.0"
},
"detox": {
"artifacts": {
"plugins": {
"uiHierarchy": "enabled",
"screenshot": {
"enabled": false
}
}
},
"configurations": {
"ios.sim.debug.iphone-13pro": {
"binaryPath": "build/Build/Products/Debug-iphonesimulator/Loop.app",
"type": "ios.simulator",
"device": {
"type": "iPhone 13 Pro",
"os": "iOS 15.5"
}
},
"ios.sim.debug.iphone-se-3": {
"binaryPath": "build/Build/Products/Debug-iphonesimulator/Loop.app",
"type": "ios.simulator",
"device": {
"type": "iPhone SE (3rd generation)",
"os": "iOS 15.5"
}
}
},
"test-runner": "jest"
},
"dependencies": {
"detox": "^19.12.1"
}
}