mirror of
https://gitlab.com/JKANetwork/CheckServer.git
synced 2026-02-15 01:31:37 +01:00
15 lines
196 B
Makefile
15 lines
196 B
Makefile
|
|
REPORTER = dot
|
|
|
|
test:
|
|
@./node_modules/.bin/mocha \
|
|
--require ./test/common \
|
|
--reporter $(REPORTER) \
|
|
--growl \
|
|
test/expect.js
|
|
|
|
test-browser:
|
|
@./node_modules/.bin/serve .
|
|
|
|
.PHONY: test
|