Skip to content

Commit

Permalink
πŸ—
Browse files Browse the repository at this point in the history
  • Loading branch information
jpzwarte committed Jan 3, 2025
1 parent 4f0f5ad commit c7fe11a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion web-test-runner.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ const config = {
'packages/components/**/src/**/*.spec.ts',
],

browsers: [playwrightLauncher({ product: 'chromium' })],
browsers: [
playwrightLauncher({
product: 'chromium' ,
createBrowserContext({ browser }) {
return browser.newContext({ locale: 'en' });
}
})
],
plugins: [a11ySnapshotPlugin(), esbuildPlugin({ ts: true, tsconfig: './tsconfig.base.json' })],

filterBrowserLogs: ({ type, args }) => {
Expand Down

0 comments on commit c7fe11a

Please sign in to comment.