mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
23 lines
333 B
Bash
Executable file
23 lines
333 B
Bash
Executable file
#! /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
|