From 926da9d3f60c3d1b768b1228e8a3fe4f32039be4 Mon Sep 17 00:00:00 2001 From: Andrew Stewart Date: Thu, 1 Jan 2015 10:09:27 -0800 Subject: [PATCH] Less strict for local development --- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index fc00a4a..01453d9 100644 --- a/Makefile +++ b/Makefile @@ -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: