From f97415d839376bbdf1d7f39617fb3ac0afeb08f4 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Fri, 9 Feb 2024 16:04:55 +0100 Subject: [PATCH] more timeout --- tests/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/common.rs b/tests/common.rs index 6b80863..8b797d8 100644 --- a/tests/common.rs +++ b/tests/common.rs @@ -122,7 +122,7 @@ impl IbisInstance { start(config).await.unwrap(); }); // wait a moment for the backend to start - tokio::time::sleep(Duration::from_millis(2000)).await; + tokio::time::sleep(Duration::from_millis(5000)).await; let form = RegisterUserData { username: username.to_string(), password: "hunter2".to_string(),