10 lines
122 B
Makefile
10 lines
122 B
Makefile
all: test
|
|
|
|
.PHONY: fetch-deps
|
|
fetch-deps:
|
|
npm install
|
|
|
|
.PHONY: test
|
|
test: fetch-deps
|
|
./node_modules/.bin/tape test/*.js
|