File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/vs/workbench/contrib/terminal/test/browser/xterm Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ import { MockContextKeyService } from 'vs/platform/keybinding/test/common/mockKe
33
33
import { Color , RGBA } from 'vs/base/common/color' ;
34
34
import { IContextKeyService } from 'vs/platform/contextkey/common/contextkey' ;
35
35
import { ITerminalLogService } from 'vs/platform/terminal/common/terminal' ;
36
+ import { isWindows } from 'vs/base/common/platform' ;
36
37
37
38
class TestWebglAddon implements WebglAddon {
38
39
static shouldThrow = false ;
@@ -256,7 +257,9 @@ suite('XtermTerminal', () => {
256
257
} ) ;
257
258
258
259
suite ( 'renderers' , ( ) => {
259
- test ( 'should re-evaluate gpu acceleration auto when the setting is changed' , async ( ) => {
260
+ // This is skipped on Windows because the result depends on the webgl
261
+ // renderer in the browsing context
262
+ ( isWindows ? test . skip : test ) ( 'should re-evaluate gpu acceleration auto when the setting is changed' , async ( ) => {
260
263
// Check initial state
261
264
strictEqual ( TestWebglAddon . isEnabled , false ) ;
262
265
You can’t perform that action at this time.
0 commit comments