From 1da2d87298e46b2efb057b6f3069299c346e5009 Mon Sep 17 00:00:00 2001 From: Gerard Rovira Date: Wed, 27 Nov 2024 11:19:15 -0500 Subject: [PATCH] Allow passing params to run-all --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ee24db444cf..6042bfc3f0e 100644 --- a/package.json +++ b/package.json @@ -58,8 +58,8 @@ "test-e2e-collab-ci-webkit": "npm run prepare-ci && cross-env E2E_PORT=4000 concurrently -k -s \"first\" \"npm run collab\" -P \"npm run test-e2e-collab-webkit -- {@}\"", "test-e2e-prod-ci-chromium": "npm run prepare-ci-prod && cross-env E2E_PORT=4000 npm run test-e2e-prod-chromium", "test-e2e-collab-prod-ci-chromium": " npm run prepare-ci-prod && cross-env E2E_PORT=4000 concurrently -k -s \"first\" \"npm run collab\" -P \"npm run test-e2e-collab-prod-chromium -- {@}\"", - "debug-run-all": "npm-run-all debug-test-e2e-*", - "run-all": "npm-run-all test-e2e-*", + "debug-run-all": "npm-run-all 'debug-test-e2e-* -- {1}' --", + "run-all": "npm-run-all 'test-e2e-* -- {1}' --", "debug-test-e2e": "cross-env playwright test --debug", "debug-test-e2e-chromium": "cross-env E2E_BROWSER=chromium playwright test --debug --project=\"chromium\"", "debug-test-e2e-prod-chromium": "cross-env E2E_BROWSER=chromium E2E_PORT=4173 playwright test --debug --project=\"chromium\"",