From cd3c0ac45b02a2b3bfd29576252fcf6338bee070 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Mon, 27 Jan 2025 13:18:52 +0100 Subject: [PATCH] Test failure: workspace.applyEdit drops the TextEdit if there is a RenameFile later #77735 (with opened editor) (fix #238837) (#238838) --- .../vscode-api-tests/src/singlefolder-tests/workspace.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extensions/vscode-api-tests/src/singlefolder-tests/workspace.test.ts b/extensions/vscode-api-tests/src/singlefolder-tests/workspace.test.ts index b871093df39..90baf6d2870 100644 --- a/extensions/vscode-api-tests/src/singlefolder-tests/workspace.test.ts +++ b/extensions/vscode-api-tests/src/singlefolder-tests/workspace.test.ts @@ -924,7 +924,8 @@ suite('vscode API - workspace', () => { } }); - test('workspace.applyEdit drops the TextEdit if there is a RenameFile later #77735 (with opened editor)', async function () { + // TODO: below test is flaky and commented out, see https://github.com/microsoft/vscode/issues/238837 + test.skip('workspace.applyEdit drops the TextEdit if there is a RenameFile later #77735 (with opened editor)', async function () { await test77735(true); });