From 87fe289e3a132d092c711d6b0572c80cbf624559 Mon Sep 17 00:00:00 2001 From: Sindhu Balasubramanian Date: Thu, 5 Feb 2026 11:02:12 -0800 Subject: [PATCH] Minor fix --- test/fx.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fx.ts b/test/fx.ts index ebadb3830..f170ddd82 100644 --- a/test/fx.ts +++ b/test/fx.ts @@ -250,7 +250,7 @@ class TreeNode { // Try three times to wait for the node to expand. for (let i = 0; i < RETRY_COUNT; i++) { try { - await tree.waitFor({ state: "visible", timeout: 3*1000 }); + await tree.waitFor({ state: "visible", timeout: 3 * 1000 }); // The tree has expanded, let's get out of here return true; } catch {