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) {
4444 cli ,
4545 [
4646 ...args ,
47- "--disable-gpu" ,
48- "--disable-software-rasterizer" ,
4947 ...extensionDependencies . flatMap ( ( dependency ) => [
5048 "--install-extension" ,
5149 dependency ,
@@ -65,7 +63,12 @@ export async function launchVscodeAndRunTests(extensionTestsPath: string) {
6563 // Note: Crash dump causes legacy VSCode to hang, so we just don't bother
6664 launchArgs : useLegacyVscode
6765 ? 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+ ] ,
6972 } ) ;
7073 } catch ( err ) {
7174 console . error ( "Test run threw exception:" ) ;
You can’t perform that action at this time.
0 commit comments