From cb830b4db537d56f1be19322756ef1b98cf9fba5 Mon Sep 17 00:00:00 2001 From: hip3r Date: Tue, 29 Oct 2024 15:44:55 +0100 Subject: [PATCH] fix: add npm script test:all #7201 --- 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",