-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.22 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
{
"name": "blind",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "configuration='android.emu.debug' node_modules/.bin/jest e2e --config=e2e/config.json --maxWorkers=1 '--testNamePattern=^((?!:ios:).)*$'",
"testArtifacts": "takeScreenshots='all' artifactsLocation='artifacts' yarn test",
"feh": "feh -F -rt -E 300 -y 500 -W 2000 artifacts"
},
"author": "",
"license": "ISC",
"dependencies": {
"detox": "^9.0.1",
"jest": "^23.5.0",
"websocket": "^1.0.26"
},
"detox": {
"configurations": {
"android.emu.debug": {
"binaryPath": "../cruijff/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug -PdetoxBuild && cd ..",
"type": "android.emulator",
"name": "Nexus_5_API_27"
},
"android.emu.release": {
"binaryPath": "../cruijff/android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release -PdetoxBuild && cd ..",
"type": "android.emulator",
"name": "Nexus_5X_API_27"
}
},
"test-runner": "jest"
}
}