File tree 2 files changed +10
-6
lines changed
2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,6 @@ module.exports = defineConfig({
20
20
// We've imported your old cypress plugins here.
21
21
// You may want to clean this up later by importing these.
22
22
setupNodeEvents ( on , config ) {
23
- on ( 'before:browser:launch' , ( _browser , launchOptions ) => {
24
- launchOptions . args . push ( '--disable-gpu' ) ;
25
-
26
- return launchOptions ;
27
- } ) ;
28
-
29
23
return require ( './cypress/plugins/index' ) ( on , config ) ;
30
24
} ,
31
25
baseUrl : 'http://localhost:3000' ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
+ "paths" : {
4
+ "common/*" : [" ../common/*" ],
5
+ "components/*" : [" ../components/*" ],
6
+ "pages/*" : [" ../pages/*" ],
7
+ "public/*" : [" ../public/*" ],
8
+ "scripts/*" : [" ../scripts/*" ],
9
+ "static/*" : [" ../public/static/*" ],
10
+ "styles/*" : [" ../styles/*" ],
11
+ "test-utils/*" : [" ../test-utils/*" ]
12
+ },
3
13
"types" : [" cypress" , " @testing-library/cypress" ]
4
14
}
5
15
}
You can’t perform that action at this time.
0 commit comments