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

24 lines
360 B
Bash
Raw Normal View History

2017-02-09 10:38:25 -05:00
#!/bin/bash -x
2021-05-19 13:57:35 -04:00
export SHARELATEX_CONFIG=`pwd`/test/acceptance/scripts/settings.test.js
echo ">> Starting server..."
grunt --no-color >server.log 2>&1 &
echo ">> Server started"
sleep 5
echo ">> Running acceptance tests..."
grunt --no-color mochaTest:acceptance
_test_exit_code=$?
echo ">> Killing server"
kill %1
echo ">> Done"
exit $_test_exit_code