Skip to content

Commit 597f22d

Browse files
committed
Specify workaround removal condition more clearly
1 parent 128b8cf commit 597f22d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cypress.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export default defineConfig({
1515
fixturesFolder: false,
1616
supportFile: 'test/cypress/support/e2e.ts',
1717
setupNodeEvents (on: any) {
18-
on('before:browser:launch', (browser: any = {}, launchOptions: any) => { // TODO Remove after upgrade to Cypress >=12.5.0, see https://github.com/cypress-io/cypress-documentation/issues/5479
18+
on('before:browser:launch', (browser: any = {}, launchOptions: any) => { // TODO Remove after upgrade to Cypress >=12.5.0 <or> Chrome 119 become available on GitHub Workflows, see https://github.com/cypress-io/cypress-documentation/issues/5479
1919
if (browser.name === 'chrome' && browser.isHeadless) {
2020
launchOptions.args = launchOptions.args.map((arg: any) => {
2121
if (arg === '--headless') {

0 commit comments

Comments
 (0)