From 9b60ac596f6e04f96448060bf8727909e321672f Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Tue, 20 Nov 2018 11:09:09 -0500 Subject: [PATCH] Add yarn command to run tests in watch mode --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index aba42055..72a3c512 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "scripts": { "watch": "parcel watch js/index.js -d static/assets --public-url /static/assets -o index.js --no-autoinstall", "build": "parcel build js/index.js -d static/assets --public-url /static/assets -o index.js", - "test": "jest" + "test": "jest", + "test:watch": "jest --watch" }, "author": "", "license": "MIT",