mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-06 04:32:22 +00:00
Update acceptance test script
This commit is contained in:
parent
5ce15c4d60
commit
db8b4bf991
1 changed files with 9 additions and 7 deletions
16
services/document-updater/test/acceptance/scripts/full-test.sh
Normal file → Executable file
16
services/document-updater/test/acceptance/scripts/full-test.sh
Normal file → Executable file
|
@ -1,20 +1,22 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
npm rebuild
|
||||
|
||||
echo ">> Starting server..."
|
||||
|
||||
grunt execute:app >> /dev/null &
|
||||
_pid="$!"
|
||||
grunt --no-color forever:app:start
|
||||
|
||||
echo ">> Server started with pid: $_pid"
|
||||
echo ">> Server started"
|
||||
|
||||
sleep 20
|
||||
sleep 5
|
||||
|
||||
echo ">> Running acceptance tests..."
|
||||
grunt mochaTest:acceptance
|
||||
grunt --no-color test:acceptance
|
||||
_test_exit_code=$?
|
||||
|
||||
echo ">> Killing server (pid: $_pid)"
|
||||
kill -1 "$_pid"
|
||||
echo ">> Killing server"
|
||||
|
||||
grunt --no-color forever:app:stop
|
||||
|
||||
echo ">> Done"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue