mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-25 14:23:17 +00:00
Add in acceptance test script
This commit is contained in:
parent
4cff89becc
commit
9cf0eb5540
1 changed files with 23 additions and 0 deletions
23
services/real-time/test/acceptance/scripts/full-test.sh
Executable file
23
services/real-time/test/acceptance/scripts/full-test.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#! /usr/bin/env bash
|
||||
|
||||
npm rebuild
|
||||
|
||||
echo ">> Starting server..."
|
||||
|
||||
grunt --no-color forever:app:start
|
||||
|
||||
echo ">> Server started"
|
||||
|
||||
sleep 5
|
||||
|
||||
echo ">> Running acceptance tests..."
|
||||
grunt --no-color mochaTest:acceptance
|
||||
_test_exit_code=$?
|
||||
|
||||
echo ">> Killing server"
|
||||
|
||||
grunt --no-color forever:app:stop
|
||||
|
||||
echo ">> Done"
|
||||
|
||||
exit $_test_exit_code
|
Loading…
Add table
Reference in a new issue