diff options
author | Mike Gerwitz <gerwitzm@lovullo.com> | 2014-04-18 09:11:01 -0400 |
---|---|---|
committer | Mike Gerwitz <gerwitzm@lovullo.com> | 2014-04-18 10:02:10 -0400 |
commit | a9556b92842b13ddf7f73a3a3b39893c009706b2 (patch) | |
tree | a5d094a3218cc04cbc419c281e64f1bae5c25fb8 | |
parent | bc923e4bc4efe9c400899f3cfa015ab8ea4f426c (diff) | |
download | liza-a9556b92842b13ddf7f73a3a3b39893c009706b2.tar.gz liza-a9556b92842b13ddf7f73a3a3b39893c009706b2.tar.bz2 liza-a9556b92842b13ddf7f73a3a3b39893c009706b2.zip |
Added TESTARGS for check target
Allows passing arguments to mocha
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 019a10c..0be73b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,4 +30,5 @@ todo: test: check check: - @PATH="$(PATH):$(CURDIR)/node_modules/mocha/bin" mocha --recursive + @PATH="$(PATH):$(CURDIR)/node_modules/mocha/bin" \ + mocha --recursive $(TESTARGS) |