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

24 lines
348 B
Bash
Raw Normal View History

#! /usr/bin/env bash
export SHARELATEX_CONFIG=`pwd`/test/acceptance/scripts/settings.test.coffee
echo ">> Starting server..."
grunt --no-color &
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