Update makefile

This commit is contained in:
Daniel García Aubert 2019-11-06 14:02:37 +01:00
parent cc24228511
commit e49cb524a8

View File

@ -39,15 +39,15 @@ test-acceptance: config/environments/test.js
@echo "***tests***" @echo "***tests***"
@$(SHELL) ./run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE_ACCEPTANCE) @$(SHELL) ./run_tests.sh ${RUNTESTFLAGS} $(TEST_SUITE_ACCEPTANCE)
jshint: lint:
@echo "***jshint***" @echo "***eslint***"
@./node_modules/.bin/jshint lib/ test/ app.js @./node_modules/.bin/eslint app.js "lib/**/*.js" "test/**/*.js"
test-all: test jshint test-all: test lint
coverage: coverage:
@RUNTESTFLAGS=--with-coverage make test @RUNTESTFLAGS=--with-coverage make test
check: test check: test
.PHONY: pre-install test jshint coverage .PHONY: pre-install test lint coverage