1
0
mirror of https://github.com/lancedikson/bowser synced 2026-03-02 03:40:27 +00:00

Make testable and add tests.

This commit is contained in:
Hannes Diercks
2013-12-13 13:17:10 +01:00
parent 88589615f4
commit 89cffac4a5
6 changed files with 554 additions and 69 deletions

View File

@@ -1,2 +1,16 @@
boosh:
node make/build.js
node make/build.js
REPORTER = dot
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