1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-03-05 15:55:25 +00:00
Files

10 lines
155 B
Makefile

test:
@NODE_ENV=test ./node_modules/expresso/bin/expresso \
$(TESTFLAGS) \
./test.js
test-cov:
@TESTFLAGS=--cov $(MAKE) test
.PHONY: test test-cov