Created
July 26, 2013 03:15
-
-
Save mobz/6085850 to your computer and use it in GitHub Desktop.
Don't commit jasmine specs containing iit or ddescribe
This file contains hidden or 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 | |
# 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