mirror of
https://github.com/lancedikson/bowser
synced 2024-10-27 20:34:22 +00:00
17 lines
245 B
Makefile
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
|