From 322cc96e7b3a37ee47cd37dec4ed06248f133077 Mon Sep 17 00:00:00 2001 From: Jack Franklin Date: Fri, 25 Sep 2020 11:44:34 +0100 Subject: [PATCH] chore: remove npm run test-types call (#6447) It was an old script that doesn't exist any more. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 25312b22ae0..8c025186ed5 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "unit-with-coverage": "cross-env COVERAGE=1 npm run unit", "assert-unit-coverage": "cross-env COVERAGE=1 mocha --config mocha-config/coverage-tests.js", "funit": "PUPPETEER_PRODUCT=firefox npm run unit", - "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser && npm run test-types", + "test": "npm run tsc && npm run lint --silent && npm run unit-with-coverage && npm run test-browser", "prepare": "node typescript-if-required.js", "prepublishOnly": "npm run tsc", "dev-install": "npm run tsc && node install.js",