overleaf/services/chat/test/acceptance/scripts/full-test.sh
2017-02-20 09:53:46 +00:00

25 lines
343 B
Bash
Executable file

#! /usr/bin/env bash
# npm rebuild
sleep 60
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