We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af45cac commit 1910d02Copy full SHA for 1910d02
c-sharp-chat/PubnubChatApi/PubNubChatApi.Tests/ChatTests.cs
@@ -175,8 +175,11 @@ public async Task TestGetUnreadMessagesCounts()
175
var testChannel = TestUtils.AssertOperation(await chat.CreatePublicConversation());
176
await testChannel.Join();
177
await testChannel.SendText("wololo");
178
+ await testChannel.SendText("wololo1");
179
+ await testChannel.SendText("wololo2");
180
+ await testChannel.SendText("wololo3");
181
- await Task.Delay(5000);
182
+ await Task.Delay(6000);
183
184
Assert.True(TestUtils.AssertOperation(await chat.GetUnreadMessagesCounts(limit: 50)).Any(x => x.ChannelId == testChannel.Id && x.Count > 0));
185
0 commit comments