|
@@ -30,10 +30,12 @@
|
30
|
30
|
"install-android": "cd playground/android && ./gradlew installDebug",
|
31
|
31
|
"uninstall-android": "cd playground/android && ./gradlew uninstallAll",
|
32
|
32
|
"start": "adb reverse tcp:8081 tcp:8081; watchman watch-del-all; node ./node_modules/react-native/local-cli/cli.js start --root=./playground",
|
33
|
|
- "test-js": "eslint lib/src integration scripts playground/src playground/e2e playground/scripts && BABEL_ENV=test jest --coverage",
|
34
|
|
- "test-android": "node ./scripts/test.android.js",
|
|
33
|
+ "test-js": "eslint lib/src integration e2e scripts playground/src && BABEL_ENV=test jest --coverage",
|
|
34
|
+ "test-unit-android": "node ./scripts/test.unit.android.js",
|
35
|
35
|
"test-unit-ios": "node ./scripts/test.unit.ios.js",
|
36
|
|
- "test": "yarn run test-js && yarn run test-android && yarn run test-ios",
|
|
36
|
+ "test-e2e-android": "node ./scripts/test.e2e.android.js",
|
|
37
|
+ "test-e2e-ios": "node ./scripts/test.e2e.ios.js",
|
|
38
|
+ "test": "yarn run test-js && yarn run test-unit-android && yarn run test-e2e-android && yarn run test-unit-ios && yarn run test-e2e-ios",
|
37
|
39
|
"test-watch": "BABEL_ENV=test jest --coverage --watch",
|
38
|
40
|
"release": "node ./scripts/release.js"
|
39
|
41
|
},
|