We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a985c3 commit a5d5176Copy full SHA for a5d5176
1 file changed
build/run-tests.sh
@@ -21,6 +21,11 @@ tns platform add android
21
wait "$EMULATOR_STARTER_PID"
22
tns test android | tee test-output.txt
23
24
+if grep -q -E 'BUILD FAILED' test-output.txt ; then
25
+ echo "TEST BUILD FAILED!"
26
+ exit 1
27
+fi
28
+
29
if grep -q -E 'Executed[[:space:]][[:digit:]]+.*FAILED' test-output.txt ; then
30
echo "TESTS FAILED!"
31
exit 1
0 commit comments