Revert "Fix timeout in tests"

This reverts commit 418b81c490.
This commit is contained in:
Sindhu Balasubramanian
2026-02-05 09:41:18 -08:00
parent c0f783e3dd
commit 0b4c32a57d
2 changed files with 3 additions and 9 deletions

View File

@@ -250,8 +250,7 @@ class TreeNode {
// Try three times to wait for the node to expand.
for (let i = 0; i < RETRY_COUNT; i++) {
try {
// Use a longer timeout (30s) since expanding may require loading children from the server
await tree.waitFor({ state: "visible", timeout: 30 * 1000 });
await tree.waitFor({ state: "visible" });
// The tree has expanded, let's get out of here
return true;
} catch {