Skip to content

Commit 575a089

Browse files
committed
Update web-test-runner configuration to enable Firefox browser support and adjust concurrency settings. Temporarily disable Chromium and WebKit due to stability issues, enhancing overall testing reliability.
1 parent f5f1260 commit 575a089

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

web-test-runner.config.mjs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import { playwrightLauncher } from '@web/test-runner-playwright';
33
export default {
44
nodeResolve: true,
55
browsers: [
6+
playwrightLauncher({ product: 'firefox' })
67
// Temporarily disabled due to stability issues
7-
// playwrightLauncher({
8-
// product: 'chromium',
8+
// playwrightLauncher({
9+
// product: 'webkit',
910
// launchOptions: {
10-
// args: ['--no-sandbox', '--disable-setuid-sandbox'],
11+
// headless: true,
12+
// args: ['--no-sandbox'],
1113
// timeout: 20000
1214
// }
13-
// }),
14-
playwrightLauncher({ product: 'firefox' }),
15-
playwrightLauncher({ product: 'webkit' }),
15+
// })
1616
],
1717
testFramework: {
1818
config: {
@@ -46,4 +46,6 @@ export default {
4646
browserStartTimeout: 60000,
4747
testsStartTimeout: 60000,
4848
testsFinishTimeout: 60000,
49+
concurrentBrowsers: 1,
50+
concurrency: 1
4951
};

0 commit comments

Comments
 (0)