Disable flaky workspace test (#256250)

See https://github.com/microsoft/vscode/issues/253863
This commit is contained in:
Alex Ross
2025-07-16 16:17:49 +02:00
committed by GitHub
parent c471b1e301
commit 8c938d137a

View File

@@ -1178,7 +1178,7 @@ suite('vscode API - workspace', () => {
});
test('issue #110141 - TextEdit.setEndOfLine applies an edit and invalidates redo stack even when no change is made', async () => {
test.skip('issue #110141 - TextEdit.setEndOfLine applies an edit and invalidates redo stack even when no change is made', async () => {
const file = await createRandomFile('hello\nworld');
const document = await vscode.workspace.openTextDocument(file);