Skip to content

Commit 1a2bc0f

Browse files
committed
Try use dom renderer
1 parent d1e834a commit 1a2bc0f

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

extensions/vscode-api-tests/src/singlefolder-tests/terminal.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ import { doesNotThrow, equal, ok, deepEqual, throws } from 'assert';
2222
await config.update('windowsEnableConpty', false, ConfigurationTarget.Global);
2323
// Disable exit alerts as tests may trigger then and we're not testing the notifications
2424
await config.update('showExitAlert', false, ConfigurationTarget.Global);
25+
// Canvas can cause problems when running in a container
26+
await config.update('rendererType', 'dom', ConfigurationTarget.Global);
2527
});
2628

2729
suite('Terminal', () => {
@@ -79,6 +81,7 @@ import { doesNotThrow, equal, ok, deepEqual, throws } from 'assert';
7981
TEST: '`'
8082
}
8183
});
84+
terminal.show();
8285
doesNotThrow(() => {
8386
// Print an environment variable value so the echo statement doesn't get matched
8487
if (process.platform === 'win32') {

0 commit comments

Comments
 (0)