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

24 lines
334 B
Bash
Raw Normal View History

#! /usr/bin/env bash
2017-02-20 05:07:30 -05:00
# npm rebuild
echo ">> Starting server..."
grunt --no-color forever:app:start
echo ">> Server started"
2017-03-06 10:11:04 -05:00
sleep 20
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