Security update for permissions_by_term
[yaffs-website] / node_modules / linerstream / makefile
1 MOCHA?=node_modules/.bin/mocha
2 REPORTER?=spec
3 GROWL?=--growl
4 FLAGS=$(GROWL) --reporter $(REPORTER) --colors --bail
5
6 test:
7         @NODE_ENV="test" \
8         $(MOCHA) $(shell find test -name "*-test.js") $(FLAGS)
9
10 one:
11         @NODE_ENV="test" \
12         $(MOCHA) $(NAME) $(FLAGS)
13
14 .PHONY: test