From c07719f9a863398fb5f3fd92c4dbcbd20e6d7a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alja=C5=BE?= Date: Tue, 12 Nov 2024 14:25:44 +0100 Subject: [PATCH] fix: add npm script test:all #7201 (#7317) --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index d3512378aa40..26ba8f24d7c8 100644 --- a/package.json +++ b/package.json @@ -11,6 +11,7 @@ "clean": "rimraf \"packages/*/dist\" dev-test/dist \"packages/*/node_modules\"", "reset": "npm run clean", "test": "npm run lint && npm run type-check && npm run test:unit", + "test:all": "npm run test && npm run test:e2e", "test:ci": "npm run lint-quiet && npm run type-check && npm run test:unit", "test:unit": "cross-env NODE_ENV=test jest --no-cache", "test:e2e": "npm run build:demo && npm run test:e2e:run",