mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 02:42:48 +00:00
15 lines
228 B
Makefile
15 lines
228 B
Makefile
|
|
TESTS = test/*.js
|
|
REPORTER = dot
|
|
|
|
test:
|
|
@DEBUG=$DEBUG,monk,monk:queries ./node_modules/.bin/mocha \
|
|
--require test/common.js \
|
|
--reporter $(REPORTER) \
|
|
--growl \
|
|
--bail \
|
|
--slow 1000 \
|
|
$(TESTS)
|
|
|
|
.PHONY: test bench
|