Run linter before tests

This commit is contained in:
Andrew Stewart 2014-12-15 13:17:12 -08:00
parent 36d1505c2f
commit 8685b57c83
1 changed files with 2 additions and 2 deletions

View File

@ -6,10 +6,10 @@ VERSION := $(shell node -e "console.log(require('./package.json').version)")
.PHONY: cover test bdd lint ci release
test:
test: lint
@$(BIN)/mocha --colors -R dot $(TEST_FILES)
bdd:
bdd: lint
@$(BIN)/mocha --colors -R spec $(TEST_FILES)
cover: