From 147a02743a44886d1cc1725cfc415902771bfdd0 Mon Sep 17 00:00:00 2001 From: Goh Jia Hao Date: Sun, 10 Jun 2018 10:52:42 -0700 Subject: [PATCH] Add jest --watch helper for npm scripts --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index a625541..0427a49 100644 --- a/package.json +++ b/package.json @@ -14,6 +14,7 @@ "dev-up": "npm install && (cd ./app && npm install) && npm run build", "dev-up-win": "npm install & cd app & npm install & cd .. & npm run build", "test": "jest src", + "guard": "jest --watch src", "e2e": "jest e2e", "tdd": "gulp tdd", "lint": "eslint .",