diff --git a/services/chat/test/acceptance/scripts/full-test.sh b/services/chat/test/acceptance/scripts/full-test.sh new file mode 100755 index 0000000000..9f6167e667 --- /dev/null +++ b/services/chat/test/acceptance/scripts/full-test.sh @@ -0,0 +1,23 @@ +#! /usr/bin/env bash + +npm rebuild + +echo ">> Starting server..." + +grunt --no-color forever:app:start + +echo ">> Server started" + +sleep 5 + +echo ">> Running acceptance tests..." +grunt --no-color mochaTest:acceptance +_test_exit_code=$? + +echo ">> Killing server" + +grunt --no-color forever:app:stop + +echo ">> Done" + +exit $_test_exit_code