From 4cc33dbd4a47f3afbeb721705e5c4ac95ff6caa1 Mon Sep 17 00:00:00 2001 From: Grigory Date: Fri, 31 Jan 2025 15:21:07 +0500 Subject: [PATCH] fix flaky test --- src/test/suite/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/suite/index.test.ts b/src/test/suite/index.test.ts index 635cb4a..136434f 100644 --- a/src/test/suite/index.test.ts +++ b/src/test/suite/index.test.ts @@ -347,7 +347,7 @@ function withSetting( const uri = await utils.createFile(contents, fixturePath) const doc = await workspace.openTextDocument(uri) await window.showTextDocument(doc) - await wait(50) // wait for EditorConfig to apply new settings + await wait(100) // wait for EditorConfig to apply new settings return doc } }