Merge branch 'master' into ja-set-version-in-docstore

This commit is contained in:
James Allen
2016-11-29 17:24:53 +00:00
2 changed files with 30 additions and 0 deletions
+23
View 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