You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo"NODE_TEST_TIMEOUT_SECONDS and NODE_TEST_KILL_AFTER_SECONDS must be positive integers">&2
49
+
case"$NODE_TEST_TIMEOUT_SECONDS"in
50
+
*[!0-9]*|0)
51
+
echo"NODE_TEST_TIMEOUT_SECONDS must be a positive integer">&2
52
+
return 2
53
+
;;
54
+
esac
55
+
case"$NODE_TEST_KILL_AFTER_SECONDS"in
56
+
*[!0-9]*|0)
57
+
echo"NODE_TEST_KILL_AFTER_SECONDS must be a positive integer">&2
52
58
return 2
53
59
;;
54
60
esac
@@ -73,7 +79,7 @@ run_node_tests() {
73
79
fi
74
80
75
81
if [ "$status"-eq 124 ] || [ "$status"-eq 137 ];then
76
-
echo"Node test suite exceeded ${NODE_TEST_TIMEOUT_SECONDS}s; terminated to prevent a hung CI job">&2
82
+
echo"Node test suite exited with status $status under the ${NODE_TEST_TIMEOUT_SECONDS}s watchdog; inspect the preceding output for a timeout or signal">&2
0 commit comments