diff --git a/Makefile b/Makefile index c1c5a4ac..1d3c1cdd 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,8 @@ jshint: @echo "***jshint***" @./node_modules/.bin/jshint lib/ +test-all: jshint test + check: test .PHONY: pre-install test diff --git a/package.json b/package.json index af48512b..44a6e6f4 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ }, "scripts": { "preinstall": "make pre-install", - "test": "make test" + "test": "make test-all" }, "engines": { "node": ">=0.8 <0.11",