From d3d333c361b000a590ca66bb649137b23495ff17 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Sat, 9 Sep 2023 14:09:56 +0800 Subject: [PATCH] fix(playwright): dlx -> exec --- tests/playwright/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/package.json b/tests/playwright/package.json index af67c460ec..2fc168cf61 100644 --- a/tests/playwright/package.json +++ b/tests/playwright/package.json @@ -26,7 +26,7 @@ "test:shard:1": "TRACE=true pnpm exec playwright test --workers=4 --shard=1/2", "test:shard:2": "TRACE=true pnpm exec playwright test --workers=4 --shard=2/2", "test:repeat": "TRACE=true pnpm exec playwright test --workers=4 --repeat-each=12", - "test:quick": "TRACE=true PW_QUICK_TEST=1 pnpm dlx playwright test --workers=4", + "test:quick": "TRACE=true PW_QUICK_TEST=1 pnpm exec playwright test --workers=4", "test:debug": "./startPlayWrightServer.sh; PW_TEST_REUSE_CONTEXT=1 PW_TEST_CONNECT_WS_ENDPOINT=ws://127.0.0.1:31000/ PWDEBUG=console pnpm exec playwright test -c playwright.config.ts --headed --project=chromium --retries 0 --timeout 0 --workers 1 --max-failures=1", "test:debug:intelliJ": "TRACE=true PWDEBUG=console pnpm exec playwright test --trace on -c playwright.config.ts --headed --project=chromium --retries 0 --workers 1 --max-failures=1", "test:debug:watch": "pnpm dlx nodemon -e ts -w ./ -x \"pnpm run test:debug\"",