-
-
Save netmilk/6885031 to your computer and use it in GitHub Desktop.
Shell script to run express app on background, run API test and, kill app and return exit status from the test runnure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
./node_modules/coffee-script/bin/coffee app.coffee & | |
sleep 5 | |
PID=$! | |
dredd apiary.apib http://localhost:3000/ | |
RESULT=$? | |
kill -9 $PID | |
exit $RESULT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment