Tobias Hopp 6102599e5d Update bot
Took 2 hours 17 minutes
2021-03-15 09:32:14 +01:00

9 lines
154 B
Makefile

TESTS = test/*.js
REPORTER = spec
TIMEOUT = 5000
test:
@./node_modules/.bin/mocha \
--reporter $(REPORTER) --timeout $(TIMEOUT) $(TESTS)
.PHONY: test