From 6e7693e6da6cd1fd935865465e1455f04658ec93 Mon Sep 17 00:00:00 2001 From: Cole Bemis Date: Thu, 17 May 2018 23:12:06 -0700 Subject: [PATCH] test: Update test scripts --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7a9ce38..507427f 100644 --- a/package.json +++ b/package.json @@ -7,10 +7,11 @@ "dist" ], "scripts": { - "all": "npm-run-all --sequential build lint test", + "all": "npm-run-all --sequential build lint test:coverage", "build": "./bin/build.sh", "lint": "eslint .", - "test": "jest", + "test": "jest --watch", + "test:coverage": "jest --coverage", "cm": "git-cz", "precommit": "lint-staged", "commitmsg": "commitlint --edit"