chore(electron): disable parallel execution of electron tests (#7789)

This commit is contained in:
pengx17 2024-08-09 07:33:15 +00:00
parent fc19180451
commit 8209e84842
No known key found for this signature in database
GPG Key ID: 23F23D9E8B3971ED

View File

@ -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,