This commit is contained in:
Stef Heyenrath
2026-04-18 08:31:29 +02:00
parent b55842afae
commit ebbedda098

View File

@@ -750,6 +750,8 @@ public class WebSocketIntegrationTests(ITestOutputHelper output, ITestContextAcc
{
await client.SendAsync(testMessage, cancellationToken: _ct);
await Task.Delay(250, _ct);
var received = await client.ReceiveAsTextAsync(cancellationToken: _ct);
received.Should().Be(testMessage, $"message '{testMessage}' should be proxied and echoed back");
}