File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# AGENTS.md
22
3- ## Quick ref
3+ ## Commands
44
55``` shell
66npm install # setup (requires Node.js ≥ 22 for `node --run`)
Original file line number Diff line number Diff line change 22 "extends" : " ./tsconfig.base.json" ,
33 "compilerOptions" : {
44 "allowJs" : true ,
5- "checkJs" : true ,
5+ "checkJs" : false ,
66 "lib" : [" ESNext" ],
77 "module" : " NodeNext" ,
88 "moduleResolution" : " NodeNext"
Original file line number Diff line number Diff line change @@ -129,13 +129,24 @@ export default defineConfig(
129129 provider : playwright ( {
130130 ...playwrightOptions ,
131131 launchOptions : {
132- channel : 'chromium'
132+ channel : 'chromium' ,
133+ args : [
134+ '--disable-renderer-accessibility' ,
135+ '--disable-platform-accessibility-integration'
136+ ]
133137 }
134138 } )
135139 } ,
136140 {
137141 browser : 'firefox' ,
138- provider : playwright ( playwrightOptions ) ,
142+ provider : playwright ( {
143+ ...playwrightOptions ,
144+ launchOptions : {
145+ firefoxUserPrefs : {
146+ 'accessibility.force_disabled' : 1
147+ }
148+ }
149+ } ) ,
139150 // TODO: remove when FF tests are stable
140151 fileParallelism : false
141152 }
You can’t perform that action at this time.
0 commit comments