mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
@@ -387,7 +387,12 @@ import { assertNoRpc, poll } from '../utils';
|
||||
});
|
||||
|
||||
suite('window.onDidWriteTerminalData', () => {
|
||||
test.skip('should listen to all future terminal data events', (done) => {
|
||||
test('should listen to all future terminal data events', function (done) {
|
||||
// This test has been flaky in the past but it's not clear why, possibly because
|
||||
// events from previous tests polluting the event recording in this test. Retries
|
||||
// was added so we continue to have coverage of the onDidWriteTerminalData API.
|
||||
this.retries(3);
|
||||
|
||||
const openEvents: string[] = [];
|
||||
const dataEvents: { name: string; data: string }[] = [];
|
||||
const closeEvents: string[] = [];
|
||||
|
||||
Reference in New Issue
Block a user