mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 20:11:32 +02:00
24 lines
364 B
Bash
Executable File
24 lines
364 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 mochaTest:acceptance
|
|
_test_exit_code=$?
|
|
|
|
echo ">> Killing server"
|
|
|
|
kill %1
|
|
|
|
echo ">> Done"
|
|
|
|
exit $_test_exit_code
|