Run linter before tests
This commit is contained in:
parent
36d1505c2f
commit
8685b57c83
4
Makefile
4
Makefile
|
@ -6,10 +6,10 @@ VERSION := $(shell node -e "console.log(require('./package.json').version)")
|
||||||
|
|
||||||
.PHONY: cover test bdd lint ci release
|
.PHONY: cover test bdd lint ci release
|
||||||
|
|
||||||
test:
|
test: lint
|
||||||
@$(BIN)/mocha --colors -R dot $(TEST_FILES)
|
@$(BIN)/mocha --colors -R dot $(TEST_FILES)
|
||||||
|
|
||||||
bdd:
|
bdd: lint
|
||||||
@$(BIN)/mocha --colors -R spec $(TEST_FILES)
|
@$(BIN)/mocha --colors -R spec $(TEST_FILES)
|
||||||
|
|
||||||
cover:
|
cover:
|
||||||
|
|
Loading…
Reference in New Issue