From d2c91e799037e043b730ca7c6297f23d2caecf2c Mon Sep 17 00:00:00 2001 From: Alex Chesters Date: Fri, 8 Dec 2017 11:58:12 +0000 Subject: [PATCH] Add seperate npm tasks for linting and unit tests --- package.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index a4328d4b..b91cc813 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,8 @@ "tal-page-strategies": "1.1.7" }, "scripts": { - "test": "grunt full --verbose" + "test": "grunt full --verbose", + "test:unit": "grunt jasmine", + "test:lint": "grunt lint" } }