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