|
@@ -34,12 +34,12 @@
|
34
|
34
|
"start": "node ./scripts/start",
|
35
|
35
|
"pretest-js": "npm run build",
|
36
|
36
|
"test-js": "node ./scripts/test-js",
|
37
|
|
- "test-unit-android": "node ./scripts/test-unit-android",
|
38
|
|
- "test-unit-ios": "node ./scripts/test-unit-ios",
|
|
37
|
+ "test-unit-ios": "node ./scripts/test-unit --ios",
|
|
38
|
+ "test-unit-android": "node ./scripts/test-unit --android",
|
39
|
39
|
"pretest-e2e-android": "npm run build",
|
40
|
40
|
"test-e2e-android": "node ./scripts/test-e2e --android",
|
41
|
41
|
"pretest-e2e-ios": "npm run build",
|
42
|
|
- "test-e2e-ios": "node ./scripts/test-e2e",
|
|
42
|
+ "test-e2e-ios": "node ./scripts/test-e2e --ios",
|
43
|
43
|
"test-all": "node ./scripts/test-all",
|
44
|
44
|
"prerelease": "npm run build",
|
45
|
45
|
"release": "node ./scripts/release",
|
|
@@ -133,16 +133,16 @@
|
133
|
133
|
},
|
134
|
134
|
"android.emu.debug": {
|
135
|
135
|
"binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
|
136
|
|
- "build": "cd playground/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ../..",
|
|
136
|
+ "build": "cd playground/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug",
|
137
|
137
|
"type": "android.emulator",
|
138
|
138
|
"name": "Nexus_5X_API_26"
|
139
|
139
|
},
|
140
|
140
|
"android.emu.release": {
|
141
|
141
|
"binaryPath": "playground/android/app/build/outputs/apk/release/app-release.apk",
|
142
|
|
- "build": "cd playground/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ../..",
|
|
142
|
+ "build": "cd playground/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release",
|
143
|
143
|
"type": "android.emulator",
|
144
|
144
|
"name": "Nexus_5X_API_26"
|
145
|
145
|
}
|
146
|
146
|
}
|
147
|
147
|
}
|
148
|
|
-}
|
|
148
|
+}
|