Hi
Question
i want to run automation tests in parallel
test 1: im doing api call to api x to my BE, and my BE is doing api call to mock ( which replace the real 3rd party) -get response A
test 2; im doing api call to api x to my BE, and my BE is doing api call to mock ( which replace the real 3rd party) -get response B
at the test setup im sending to wire mock diff pairs on the same endpoint, but with diff response that i want to get
now the 2 tests run in parallel, and the response from the wiremock will be the "last" entered pair
how can i solve this issue, without creating 2 wirmocks , for instance with port 8080/8081
think that we will have 20 tests that will run in parallel
note:
in backend i can just control the base url of the mock/3rd party, and cannot pass identifier to the BE it self
Thanks 🙂