From 575563f33d91e0107a0f5c82edc110ab06390639 Mon Sep 17 00:00:00 2001 From: lingbopro Date: Mon, 20 Jan 2025 15:28:17 +0800 Subject: [PATCH] test: set concurrent browsers of web-test-runner to 3 --- web-test-runner.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web-test-runner.config.js b/web-test-runner.config.js index 419fdad..9c200a6 100644 --- a/web-test-runner.config.js +++ b/web-test-runner.config.js @@ -3,6 +3,7 @@ import { playwrightLauncher } from '@web/test-runner-playwright'; export default { concurrency: 10, + concurrentBrowsers: 3, files: ['test/**/*.test.ts', 'test/**/*.test.js'], nodeResolve: true, preserveSymlinks: true,