Skip to content

Instantly share code, notes, and snippets.

@netmilk
Created September 20, 2013 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save netmilk/6637461 to your computer and use it in GitHub Desktop.
Save netmilk/6637461 to your computer and use it in GitHub Desktop.
Script for testing Express.js backend API application written in Coffee with Dredd
#!/bin/sh
./node_modules/coffee-script/bin/coffee app.coffee &
sleep 1
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