test - disable another flaky terminal test (#92826)

This commit is contained in:
Benjamin Pasero 2020-03-19 07:57:02 +01:00
parent 106046c1ad
commit 9f2cc0cc79

View file

@ -235,7 +235,8 @@ suite('window namespace tests', () => {
});
suite('window.onDidWriteTerminalData', () => {
test('should listen to all future terminal data events', (done) => {
// TODO@Daniel done called multiple times (https://github.com/microsoft/vscode/issues/92826)
((env.uiKind === UIKind.Web) ? test.skip : test)('should listen to all future terminal data events', (done) => {
const openEvents: string[] = [];
const dataEvents: { name: string, data: string }[] = [];
const closeEvents: string[] = [];