Skip to content

Commit

Permalink
Dramatically increase timeout for another part of failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Mar 8, 2024
1 parent 46b5044 commit 409ce52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void testRefreshingTreeTable() {
// This call effectively asserts that there are 10 rows after expand, so we don't need
// to worry about an update from the underlying table racing the expand
return waitForEventWhere(treeTable, JsTreeTable.EVENT_UPDATED,
(CustomEvent<JsTreeTable.TreeViewportData> d) -> d.detail.getTreeSize() == 1, 4004);
(CustomEvent<JsTreeTable.TreeViewportData> d) -> d.detail.getTreeSize() == 1, 20004);
}).then(event -> {
treeTable.close();

Expand Down

0 comments on commit 409ce52

Please sign in to comment.