Skip to content

Instantly share code, notes, and snippets.

@mobz
Created July 26, 2013 03:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mobz/6085850 to your computer and use it in GitHub Desktop.
Save mobz/6085850 to your computer and use it in GitHub Desktop.
Don't commit jasmine specs containing iit or ddescribe
#!/bin/sh
# don't commit jasmine specs containing a ddescribe or iit
if git diff --cached --name-only | xargs egrep --include "*Spec.js" "\b(iit|ddescribe)\b"
then
echo "found Spec with iit or ddescribe"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment