You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
147 B

#!/bin/bash
cd ..
for (( i=1; i<=10000; i++ ))
do
echo "Running test $i .."
npm test
if [ $? -ne 0 ]; then
break
fi
done