File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
packages/test-harness/src/util Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,6 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
44
44
cli ,
45
45
[
46
46
...args ,
47
- "--disable-gpu" ,
48
- "--disable-software-rasterizer" ,
49
47
...extensionDependencies . flatMap ( ( dependency ) => [
50
48
"--install-extension" ,
51
49
dependency ,
@@ -65,7 +63,12 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
65
63
// Note: Crash dump causes legacy VSCode to hang, so we just don't bother
66
64
launchArgs : useLegacyVscode
67
65
? undefined
68
- : [ `--crash-reporter-directory=${ crashDir } ` , `--logsPath=${ logsDir } ` ] ,
66
+ : [
67
+ `--crash-reporter-directory=${ crashDir } ` ,
68
+ `--logsPath=${ logsDir } ` ,
69
+ "--disable-gpu" ,
70
+ "--disable-software-rasterizer" ,
71
+ ] ,
69
72
} ) ;
70
73
} catch ( err ) {
71
74
console . error ( "Test run threw exception:" ) ;
You can’t perform that action at this time.
0 commit comments