Skip to content

Commit

Permalink
Force mocha to check for global leaks
Browse files Browse the repository at this point in the history
  • Loading branch information
elliotf committed Nov 20, 2013
1 parent fbb536d commit afdf129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ teaser:

test:
@if [ "$$GREP" ]; then \
make teaser && ./node_modules/mocha/bin/mocha --colors -t 10000 --reporter $(REPORTER) -g "$$GREP" $(TESTS); \
make teaser && ./node_modules/mocha/bin/mocha --colors -t 10000 --check-leaks --reporter $(REPORTER) -g "$$GREP" $(TESTS); \
else \
make teaser && ./node_modules/mocha/bin/mocha --colors -t 10000 --reporter $(REPORTER) $(TESTS); \
make teaser && ./node_modules/mocha/bin/mocha --colors -t 10000 --check-leaks --reporter $(REPORTER) $(TESTS); \
fi


Expand Down

0 comments on commit afdf129

Please sign in to comment.