From a414c4e60ec1c3dbe9e79443416a54e3cea4143a Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 17 Apr 2019 11:54:22 -0400 Subject: [PATCH] don't use --watch by default when running tests --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 988fcb4335..7b5a3cbc5e 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "index.jsx", "scripts": { "start": "webpack-dev-server --config ./webpack.config.js --mode development", - "test": "jest --watch --coverage", + "test": "jest --coverage", + "test-watch": "jest --watch", "lint": "eslint --ext .js --ext .jsx .", "add-locale": "lingui add-locale", "extract-strings": "lingui extract",