Files
study/Swoft_BackEndApi/app/Utils/bmob/doc_develop/Makefile
2024-09-27 01:06:04 +08:00

11 lines
201 B
Makefile

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