overleaf/services/document-updater/test/acceptance/scripts/full-test.sh

18 lines
267 B
Bash

#! /usr/bin/env bash
echo ">> Starting server..."
grunt >> /dev/null &
_pid="$!"
echo ">> Server started with pid: $_pid"
sleep 20
echo ">> Running acceptance tests..."
grunt test:acceptance
echo ">> Killing server (pid: $_pid)"
kill -1 "$_pid"
echo ">> Done"