From c6df6d642a9b63f3356cc39df1c0e904dcbccb09 Mon Sep 17 00:00:00 2001 From: pythongosssss <125205205+pythongosssss@users.noreply.github.com> Date: Fri, 13 Oct 2023 20:25:20 +0100 Subject: [PATCH] for groups --- tests-ui/utils/ezgraph.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests-ui/utils/ezgraph.js b/tests-ui/utils/ezgraph.js index 1c6e27fef..fd1d2dc7f 100644 --- a/tests-ui/utils/ezgraph.js +++ b/tests-ui/utils/ezgraph.js @@ -319,8 +319,8 @@ class EzGraph { const graph = JSON.parse(JSON.stringify(this.app.graph.serialize())); return new Promise((r) => { this.app.graph.clear(); - setTimeout(() => { - this.app.loadGraphData(graph); + setTimeout(async () => { + await this.app.loadGraphData(graph); r(); }, 10); });