From f5772893416949ac73345fa0258fe1570592b808 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Tue, 24 Jul 2018 08:53:40 +0200 Subject: [PATCH] fix build, by calling jest without yarn --- scm-ui/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scm-ui/package.json b/scm-ui/package.json index 7c4148d825..d5a642099f 100644 --- a/scm-ui/package.json +++ b/scm-ui/package.json @@ -27,8 +27,8 @@ "build-js": "react-scripts build", "build": "npm-run-all build-css build-js", "test": "jest", - "test-coverage": "yarn run test --coverage", - "test-ci": "yarn run test --ci --coverage", + "test-coverage": "jest --coverage", + "test-ci": "jest --ci --coverage", "eject": "react-scripts eject", "flow": "flow" },