From d9966daba2b0182c62f40a68fc9e3899f6df38a2 Mon Sep 17 00:00:00 2001 From: Erik Marks <25517051+rekmarks@users.noreply.github.com> Date: Fri, 17 Apr 2020 10:45:19 -0700 Subject: [PATCH] Add test:unit:path script to package.json (#8355) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 35338470c..940fd03de 100644 --- a/package.json +++ b/package.json @@ -21,6 +21,7 @@ "test:unit:global": "mocha --exit --require test/env.js --require test/setup.js --recursive mocha test/unit-global/*", "test:unit:lax": "mocha --exit --require test/env.js --require test/setup.js --recursive \"test/unit/{,**/!(permissions)}/*.js\" \"ui/app/**/*.test.js\"", "test:unit:strict": "mocha --exit --require test/env.js --require test/setup.js --recursive \"test/unit/**/permissions/*.js\"", + "test:unit:path": "mocha --exit --require test/env.js --require test/setup.js --recursive", "test:integration": "yarn test:integration:build && yarn test:flat", "test:integration:build": "yarn build styles", "test:e2e:chrome": "SELENIUM_BROWSER=chrome test/e2e/run-all.sh",