From 221cb7eccb33fa26f80285a44c5449e9c1d1871f Mon Sep 17 00:00:00 2001 From: Chris Smith <1979423+chris13524@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:16:46 -0700 Subject: [PATCH] fix: no retries for canary and refactor scripts (#1994) --- apps/laboratory/package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/laboratory/package.json b/apps/laboratory/package.json index 7b10620bce..3afea1e43c 100644 --- a/apps/laboratory/package.json +++ b/apps/laboratory/package.json @@ -11,11 +11,11 @@ "playwright:test": "npx playwright test", "playwright:test:wallet": "npx playwright test --grep 'connect-qr.spec.ts|wallet.spec.ts'", "playwright:test:siwe": "npx playwright test --grep siwe.spec.ts", - "playwright:test:canary": "npx playwright test --grep canary.spec.ts --project='Desktop Chrome/wagmi'", - "playwright:debug": "npx playwright test --debug", - "playwright:debug:wallet": "npx playwright test --debug 'connect-qr.spec.ts|wallet.spec.ts'", - "playwright:debug:siwe": "npx playwright test --debug --grep siwe.spec.ts", - "playwright:debug:canary": "npx playwright test --debug --grep canary.spec.ts --project='Desktop Chrome/wagmi'" + "playwright:test:canary": "npx playwright test --retries=0 --grep canary.spec.ts --project='Desktop Chrome/wagmi'", + "playwright:debug": "npm run playwright:test -- --debug", + "playwright:debug:wallet": "npm run playwright:test:wallet -- --debug", + "playwright:debug:siwe": "npm run playwright:test:siwe -- --debug", + "playwright:debug:canary": "npm run playwright:test:canary -- --debug" }, "dependencies": { "@chakra-ui/react": "2.8.2",