1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-20 20:21:34 +01:00
Files
2020-10-04 17:14:00 +02:00

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