Просмотр исходного кода

Don't add colours in automated test script

James Allen 9 лет назад
Родитель
Сommit
10008fa9c4
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      services/docstore/test/acceptance/scripts/full-test.sh

+ 3 - 3
services/docstore/test/acceptance/scripts/full-test.sh

@@ -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"