From 92bfe6e2e1085321fb533466502ca92750a4b111 Mon Sep 17 00:00:00 2001 From: Grigory Date: Sat, 8 Feb 2025 19:37:40 +0500 Subject: [PATCH] test: return to the 50ms timer --- 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 63dd883..a3e1a7f 100644 --- a/src/test/suite/index.test.ts +++ b/src/test/suite/index.test.ts @@ -342,7 +342,7 @@ function withSetting( ) const doc = await workspace.openTextDocument(uri) await window.showTextDocument(doc) - await wait(100) // wait for EditorConfig to apply new settings + await wait(50) // wait for EditorConfig to apply new settings return doc } }