We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7101f53 commit e909cdaCopy full SHA for e909cda
src/server/wtr-config.js
@@ -213,6 +213,7 @@ export class WTRConfig {
213
if (!Array.isArray(browsers)) throw new TypeError('browsers must be an array');
214
215
return browsers.map((b) => playwrightLauncher({
216
+ concurrency: b === 'firefox' ? 1 : undefined, // focus in Firefox unreliable if concurrency > 1 (https://github.com/modernweb-dev/web/issues/238)
217
product: b,
218
createBrowserContext: ({ browser }) => browser.newContext({ deviceScaleFactor: 2, reducedMotion: 'reduce' })
219
}));
0 commit comments