From c8902a941c36d789aa1209b715c3bd65d11b34d2 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 13 Oct 2014 14:58:12 +1100 Subject: [PATCH] add jshint to make test --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 34b20fc60c..9173ed25d1 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ ISTANBUL_CMD = node_modules/istanbul/lib/cli.js cover +JSHINT_CMD = node_modules/jshint/bin/jshint MOCHA_CMD = node_modules/mocha/bin/_mocha export NODE_ENV = test @@ -12,6 +13,7 @@ bench: node node_modules/matcha/bin/_matcha test: + $(JSHINT_CMD) lib $(MOCHA_CMD) test-cov: