1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-28 14:20:45 +00:00
lancedikson_bowser/Makefile
2015-07-25 19:14:14 -07:00

17 lines
245 B
Makefile

boosh:
node make/build.js
REPORTER = spec
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
test-w:
@NODE_ENV=test ./node_modules/.bin/mocha \
--reporter $(REPORTER) \
--growl \
--watch
.PHONY: test test-w