windows - disable terminal integration tests (#75689)

This commit is contained in:
Benjamin Pasero 2019-06-18 13:48:26 +02:00
parent 985de26b34
commit 356440d72d

View file

@ -569,7 +569,7 @@ suite('window namespace tests', () => {
});
});
suite('Terminal', () => {
(process.platform === 'win32' ? suite.skip /* https://github.com/microsoft/vscode/issues/75689 */ : suite)('Terminal', () => {
test('sendText immediately after createTerminal should not throw', () => {
const terminal = window.createTerminal();
assert.doesNotThrow(terminal.sendText.bind(terminal, 'echo "foo"'));