mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
Skip flaky undo/redo stack tests (#260514)
See https://github.com/microsoft/vscode/issues/254041
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user