Skip flaky undo/redo stack tests (#260514)

See https://github.com/microsoft/vscode/issues/254041
This commit is contained in:
Alex Ross
2025-08-08 10:59:25 +02:00
committed by GitHub
parent d2bd76b5ca
commit 1b97fc2890

View File

@@ -173,7 +173,7 @@ suite('vscode API - editors', () => {
}, { undoStopBefore: undoStopBefore, undoStopAfter: undoStopAfter });
}
test('TextEditor.edit can control undo/redo stack 1', () => {
test.skip('TextEditor.edit can control undo/redo stack 1', () => {
return withRandomFileEditor('Hello world!', async (editor, doc) => {
const applied1 = await executeReplace(editor, new Range(0, 0, 0, 1), 'h', false, false);
assert.ok(applied1);
@@ -196,7 +196,7 @@ suite('vscode API - editors', () => {
});
});
test('TextEditor.edit can control undo/redo stack 2', () => {
test.skip('TextEditor.edit can control undo/redo stack 2', () => {
return withRandomFileEditor('Hello world!', (editor, doc) => {
return executeReplace(editor, new Range(0, 0, 0, 1), 'h', false, false).then(applied => {
assert.ok(applied);