Hello Community! I'm using wiremock for my api tes...
# wiremock-java
c
Hello Community! I'm using wiremock for my api testing and made them to execute in my build pipeline which adds a great value! But now, I see my build times are going higher as with number of tests growing. Is there a way that I can execute these tests in parallel ?
t
WireMock will happily work for parallel tests. It’s usually a good idea to use
.dynamicPort()
so that you don’t get port binding issues.