Skip to content

Instantly share code, notes, and snippets.

@holyketzer
Created January 15, 2014 12:41
Show Gist options
  • Save holyketzer/8435501 to your computer and use it in GitHub Desktop.
Save holyketzer/8435501 to your computer and use it in GitHub Desktop.
Node.js Mocha runner
#/bin/bash
if [[ "$OSTYPE" == "darwin"* ]]; then
echo "Mac OS X detected"
export NODE_ENV=test && node_modules/.bin/mocha --reporter spec --recursive test
else
echo
SET NODE_ENV=test && node_modules/.bin/mocha --reporter spec --recursive test
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment