From 8209e848425943fb4fbb26e460ec2e713d54af93 Mon Sep 17 00:00:00 2001 From: pengx17 Date: Fri, 9 Aug 2024 07:33:15 +0000 Subject: [PATCH] chore(electron): disable parallel execution of electron tests (#7789) --- tests/affine-desktop/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/affine-desktop/playwright.config.ts b/tests/affine-desktop/playwright.config.ts index 0647aae635..f6cd39740d 100644 --- a/tests/affine-desktop/playwright.config.ts +++ b/tests/affine-desktop/playwright.config.ts @@ -16,7 +16,7 @@ import type { PlaywrightTestConfig } from '@playwright/test'; const config: PlaywrightTestConfig = { testDir: './e2e', fullyParallel: true, - workers: 2, + workers: 1, timeout: process.env.CI ? 50_000 : 30_000, expect: { timeout: process.env.CI ? 15_000 : 5_000,