We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31c147b commit 02e09dbCopy full SHA for 02e09db
2 files changed
AGENTS.md
@@ -1,6 +1,6 @@
1
# AGENTS.md
2
3
-## Quick ref
+## Commands
4
5
```shell
6
npm install # setup (requires Node.js ≥ 22 for `node --run`)
vite.config.ts
@@ -129,13 +129,21 @@ export default defineConfig(
129
provider: playwright({
130
...playwrightOptions,
131
launchOptions: {
132
- channel: 'chromium'
+ channel: 'chromium',
133
+ args: ['--disable-renderer-accessibility']
134
}
135
})
136
},
137
{
138
browser: 'firefox',
- provider: playwright(playwrightOptions),
139
+ provider: playwright({
140
+ ...playwrightOptions,
141
+ launchOptions: {
142
+ firefoxUserPrefs: {
143
+ 'accessibility.force_disabled': 1
144
+ }
145
146
+ }),
147
// TODO: remove when FF tests are stable
148
fileParallelism: false
149
0 commit comments