From 3e0cb1a774602851299029502bbd768d08467956 Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Tue, 22 Jun 2021 10:31:58 -0700 Subject: [PATCH] Fixed test run command --- ui/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/package.json b/ui/package.json index ec974b254..2e3d58bd4 100644 --- a/ui/package.json +++ b/ui/package.json @@ -44,13 +44,14 @@ "start": "react-scripts start", "build": "GENERATE_SOURCEMAP=true react-scripts build", "buildProd": "react-scripts build && npm run copy", - "test": "react-scripts test 00==", + "test": "react-scripts test", "eject": "react-scripts eject", "build:static": "sass src/static.scss ./build/unsecured/static.css", "copy:static": "node ./build", "copy": "npm run copy:static && npm run build:static" }, "jest": { + "testMatch": ["**/?(*.)+(spec|test).[jt]s?(x)"], "collectCoverageFrom": [ "src/**/*.{js,jsx}", "!src/testing/**/*.*",