1
0
mirror of https://github.com/lancedikson/bowser synced 2024-09-27 22:03:37 +00:00
lancedikson_bowser/Makefile

17 lines
245 B
Makefile
Raw Normal View History

2011-04-27 22:14:35 +00:00
boosh:
2013-12-13 12:17:10 +00:00
node make/build.js
2015-07-26 02:14:14 +00:00
REPORTER = spec
2013-12-13 12:17:10 +00:00
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