overleaf/services/document-updater/test/acceptance/scripts/full-test.sh
2016-11-29 14:57:05 +00:00

23 lines
326 B
Bash
Executable file

#! /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 test:acceptance
_test_exit_code=$?
echo ">> Killing server"
grunt --no-color forever:app:stop
echo ">> Done"
exit $_test_exit_code