mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-14 03:22:48 +00:00
13 lines
221 B
Makefile
13 lines
221 B
Makefile
ROOT := $(shell pwd)
|
|
MOCHA_TESTS := $(shell find test/ -name '*.mocha.coffee')
|
|
MOCHA := ./node_modules/mocha/bin/mocha
|
|
|
|
g = "."
|
|
|
|
test-mocha:
|
|
@NODE_ENV=test $(MOCHA) \
|
|
--grep "$(g)" \
|
|
$(MOCHA_TESTS)
|
|
|
|
test: test-mocha
|