overleaf/services/chat/test/acceptance/scripts/full-test.sh

26 lines
343 B
Bash
Raw Normal View History

2016-12-15 14:07:26 +00:00
#! /usr/bin/env bash
2017-02-20 09:31:10 +00:00
# npm rebuild
2016-12-15 14:07:26 +00:00
sleep 60
2016-12-15 14:07:26 +00:00
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