11 lines
128 B
Makefile
Raw Normal View History

2018-02-19 02:41:25 +09:00
BIN = ./node_modules/.bin/
test:
@${BIN}mocha \
--reporter spec \
--bail
clean:
@rm -rf node_modules
.PHONY: test clean