We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 484f98a commit 2098f49Copy full SHA for 2098f49
foreign/csharp/Iggy_SDK.Tests.Integration/Fixtures/IggyServerFixture.cs
@@ -72,7 +72,11 @@ public IggyServerFixture()
72
var builder = new ContainerBuilder(DockerImage)
73
.WithPortBinding(3000, true)
74
.WithPortBinding(8090, true)
75
- .WithWaitStrategy(Wait.ForUnixContainer().UntilInternalTcpPortIsAvailable(8090))
+ .WithWaitStrategy(Wait.ForUnixContainer()
76
+ .UntilInternalTcpPortIsAvailable(8090)
77
+ .UntilHttpRequestIsSucceeded(request => request
78
+ .ForPort(3000)
79
+ .ForPath("/ping")))
80
.WithName(_containerId)
81
.WithPrivileged(true)
82
.WithCleanUp(true);
0 commit comments