mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
23 lines
359 B
Bash
Executable file
23 lines
359 B
Bash
Executable file
#!/bin/bash -x
|
|
|
|
export SHARELATEX_CONFIG=`pwd`/test/acceptance/scripts/settings.test.coffee
|
|
|
|
echo ">> Starting server..."
|
|
|
|
grunt --no-color >server.log 2>&1 &
|
|
|
|
echo ">> Server started"
|
|
|
|
sleep 5
|
|
|
|
echo ">> Running acceptance tests..."
|
|
grunt --no-color test:acceptance
|
|
_test_exit_code=$?
|
|
|
|
echo ">> Killing server"
|
|
|
|
kill %1
|
|
|
|
echo ">> Done"
|
|
|
|
exit $_test_exit_code
|