Merge pull request #193729 from microsoft/aamunger/flakyTest

skip flaky test
This commit is contained in:
Aaron Munger 2023-09-21 13:41:21 -07:00 committed by GitHub
commit f5e97242d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -387,7 +387,8 @@ import { assertNoRpc, poll } from '../utils';
});
suite('window.onDidWriteTerminalData', () => {
test('should listen to all future terminal data events', function (done) {
// still flaky with retries, skipping https://github.com/microsoft/vscode/issues/193505
test.skip('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.