mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
19 lines
267 B
Bash
19 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"
|