8 lines
119 B
Makefile
8 lines
119 B
Makefile
REPORTER = spec
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--reporter $(REPORTER) \
|
|
./test/make-array.js
|
|
|
|
.PHONY: test |