10 lines
146 B
Makefile
10 lines
146 B
Makefile
test:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha
|
|
|
|
test-w:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--growl \
|
|
--watch
|
|
|
|
.PHONY: test test-w
|