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 0dae1ea commit a1c09b5Copy full SHA for a1c09b5
1 file changed
cypress.config.js
@@ -20,6 +20,12 @@ module.exports = defineConfig({
20
// We've imported your old cypress plugins here.
21
// You may want to clean this up later by importing these.
22
setupNodeEvents(on, config) {
23
+ on('before:browser:launch', (_browser, launchOptions) => {
24
+ launchOptions.args.push('--disable-gpu');
25
+
26
+ return launchOptions;
27
+ });
28
29
return require('./cypress/plugins/index')(on, config);
30
},
31
baseUrl: 'http://localhost:3000',
0 commit comments