Less strict for local development

This commit is contained in:
Andrew Stewart 2015-01-01 10:09:27 -08:00
parent 90bf775d1d
commit 926da9d3f6
1 changed files with 5 additions and 3 deletions

View File

@ -4,12 +4,14 @@ TEST_FILES := spec/helper.js $(shell find spec/lib -type f -name "*.js")
VERSION := $(shell node -e "console.log(require('./package.json').version)")
.PHONY: cover test bdd lint ci release
.PHONY: default cover test bdd lint ci release
test: lint
default: lint test
test:
@$(BIN)/mocha --colors -R dot $(TEST_FILES)
bdd: lint
bdd:
@$(BIN)/mocha --colors -R spec $(TEST_FILES)
cover: