Change rendererType to gpuAcceleration

Fixes #106202
This commit is contained in:
Daniel Imms
2021-03-29 14:15:45 -07:00
parent 31fd94b660
commit f02e4853c3
5 changed files with 20 additions and 20 deletions

View File

@@ -18,7 +18,7 @@ import { assertNoRpc } from '../utils';
// Disable exit alerts as tests may trigger then and we're not testing the notifications
await config.update('showExitAlert', false, ConfigurationTarget.Global);
// Canvas may cause problems when running in a container
await config.update('rendererType', 'dom', ConfigurationTarget.Global);
await config.update('gpuAcceleration', 'off', ConfigurationTarget.Global);
// Disable env var relaunch for tests to prevent terminals relaunching themselves
await config.update('environmentChangesRelaunch', false, ConfigurationTarget.Global);
});