Skip to content

Commit 1b97fc2

Browse files
authored
Skip flaky undo/redo stack tests (#260514)
See #254041
1 parent d2bd76b commit 1b97fc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/vscode-api-tests/src/singlefolder-tests/editor.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ suite('vscode API - editors', () => {
173173
}, { undoStopBefore: undoStopBefore, undoStopAfter: undoStopAfter });
174174
}
175175

176-
test('TextEditor.edit can control undo/redo stack 1', () => {
176+
test.skip('TextEditor.edit can control undo/redo stack 1', () => {
177177
return withRandomFileEditor('Hello world!', async (editor, doc) => {
178178
const applied1 = await executeReplace(editor, new Range(0, 0, 0, 1), 'h', false, false);
179179
assert.ok(applied1);
@@ -196,7 +196,7 @@ suite('vscode API - editors', () => {
196196
});
197197
});
198198

199-
test('TextEditor.edit can control undo/redo stack 2', () => {
199+
test.skip('TextEditor.edit can control undo/redo stack 2', () => {
200200
return withRandomFileEditor('Hello world!', (editor, doc) => {
201201
return executeReplace(editor, new Range(0, 0, 0, 1), 'h', false, false).then(applied => {
202202
assert.ok(applied);

0 commit comments

Comments
 (0)