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 d5fa50f commit ba3371cCopy full SHA for ba3371c
src/main/java/org/wiremock/integrations/testcontainers/WireMockContainer.java
@@ -77,6 +77,7 @@ public WireMockContainer(String version) {
77
public WireMockContainer(String image, String version) {
78
super(image + ":" + version);
79
wireMockArgs = new StringBuilder();
80
+ setWaitStrategy(DEFAULT_WAITER);
81
}
82
83
/**
@@ -200,7 +201,6 @@ public Integer getServerPort() {
200
201
protected void configure() {
202
super.configure();
203
withExposedPorts(PORT);
- waitingFor(DEFAULT_WAITER);
204
for (Stub stub : mappingStubs.values()) {
205
withCopyToContainer(Transferable.of(stub.json), MAPPINGS_DIR + stub.name + ".json");
206
0 commit comments