Don't add colours in automated test script

This commit is contained in:
James Allen 2016-11-29 14:41:12 +00:00
parent 7204c08fb2
commit 10008fa9c4

View file

@ -4,19 +4,19 @@ npm rebuild
echo ">> Starting server..."
grunt forever:app:start
grunt --no-color forever:app:start
echo ">> Server started"
sleep 5
echo ">> Running acceptance tests..."
grunt mochaTest:acceptance
grunt --no-color mochaTest:acceptance
_test_exit_code=$?
echo ">> Killing server"
grunt forever:app:stop
grunt --no-color forever:app:stop
echo ">> Done"