From 2686d9c82cae14fb27f670655b9bdc527affa0b8 Mon Sep 17 00:00:00 2001 From: jack Date: Wed, 26 Nov 2025 19:25:47 -1000 Subject: [PATCH] Increase test sleep duration to fix flaky CI test --- bitchatTests/ChatViewModelTests.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitchatTests/ChatViewModelTests.swift b/bitchatTests/ChatViewModelTests.swift index f0f4f31f..209757bd 100644 --- a/bitchatTests/ChatViewModelTests.swift +++ b/bitchatTests/ChatViewModelTests.swift @@ -158,7 +158,7 @@ struct ChatViewModelReceivingTests { ) // Give time for async Task and pipeline processing - try? await Task.sleep(nanoseconds: 200_000_000) + try? await Task.sleep(nanoseconds: 500_000_000) #expect(viewModel.messages.contains { $0.content == "Public hello from Bob" }) }