From 11a75febd97570fee419263f483b9d05eda9c194 Mon Sep 17 00:00:00 2001 From: luans-qa Date: Thu, 12 Mar 2026 16:50:20 -0300 Subject: [PATCH 1/2] test: implement retries and remove useless configf --- apps/wallets/quickstart-devkit/playwright.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/wallets/quickstart-devkit/playwright.config.ts b/apps/wallets/quickstart-devkit/playwright.config.ts index 0f2b97d78..c32f702d6 100644 --- a/apps/wallets/quickstart-devkit/playwright.config.ts +++ b/apps/wallets/quickstart-devkit/playwright.config.ts @@ -6,9 +6,8 @@ dotenv.config({ path: path.resolve(__dirname, ".env") }); export default defineConfig({ testDir: "./e2e", - fullyParallel: true, forbidOnly: !!process.env.CI, - retries: 0, + retries: 2, workers: 1, maxFailures: undefined, // Don't stop after a certain number of failures - run all tests reporter: process.env.CI ? [["json", { outputFile: "test-results/playwright-results.json" }], ["list"]] : "html", From 7c6e6157b937d2bcd16594397dcd8f321d9749b3 Mon Sep 17 00:00:00 2001 From: luans-qa Date: Thu, 12 Mar 2026 17:21:16 -0300 Subject: [PATCH 2/2] Update apps/wallets/quickstart-devkit/playwright.config.ts Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- apps/wallets/quickstart-devkit/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wallets/quickstart-devkit/playwright.config.ts b/apps/wallets/quickstart-devkit/playwright.config.ts index c32f702d6..9524d2964 100644 --- a/apps/wallets/quickstart-devkit/playwright.config.ts +++ b/apps/wallets/quickstart-devkit/playwright.config.ts @@ -7,7 +7,7 @@ dotenv.config({ path: path.resolve(__dirname, ".env") }); export default defineConfig({ testDir: "./e2e", forbidOnly: !!process.env.CI, - retries: 2, + retries: process.env.CI ? 2 : 0, workers: 1, maxFailures: undefined, // Don't stop after a certain number of failures - run all tests reporter: process.env.CI ? [["json", { outputFile: "test-results/playwright-results.json" }], ["list"]] : "html",