From 342c89749005318885b0a910b4610b95ad0d8c10 Mon Sep 17 00:00:00 2001 From: SUZUKI Sosuke Date: Wed, 21 Jun 2023 00:29:38 +0900 Subject: [PATCH] Wait more (#3035) --- src/test/suite/format.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/suite/format.test.ts b/src/test/suite/format.test.ts index 7e40d8111..29638cb4a 100644 --- a/src/test/suite/format.test.ts +++ b/src/test/suite/format.test.ts @@ -81,7 +81,7 @@ export async function format( if (text !== actual) { break; } - await wait(150); + await wait(250); await vscode.commands.executeCommand("editor.action.formatDocument"); actual = doc.getText(); }