From 06c91e5df4537a32fc9d94a2c5734a215fc59a52 Mon Sep 17 00:00:00 2001 From: mahula Date: Wed, 8 Oct 2025 17:24:54 +0200 Subject: [PATCH] remove test:split:auto script fromcypress package.json --- cypress/package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/cypress/package.json b/cypress/package.json index 710e5a0d..522c64a3 100644 --- a/cypress/package.json +++ b/cypress/package.json @@ -6,7 +6,6 @@ "scripts": { "test": "cypress run --e2e --browser chromium", "test:open": "cypress open --e2e", - "test:split:auto": "SPEC_COUNT=$(find e2e -name '*.cy.ts' | wc -l) && echo \"Running $SPEC_COUNT chunks in parallel\" && for i in $(seq 0 $((SPEC_COUNT-1))); do SPLIT=$SPEC_COUNT SPLIT_INDEX=$i cypress run --e2e --browser chromium & done; wait", "report:merge": "mochawesome-merge 'results/*.json' -o results/merged-report.json", "report:generate": "marge results/merged-report.json --reportDir results/html --reportTitle 'Utopia Map E2E Tests' --reportPageTitle 'Utopia Map E2E Test Report' --inline --charts --showPassed --showFailed --showPending --showSkipped", "report:full": "npm run report:merge && npm run report:generate",