I am executing multiple Runners concurrently. Those Runners use @SpringBootTest to start multiple Spring Boot Applications (one for each Runner). So far, so good. The applications start without any issues using different spring profiles.
I would like to run different feature files on each Runner, using different karate-config-env.js files. Is it possible? I took a look at the Runner and Builder class of Karate and everything seems static.
In other words, is Karate multi-thread safe?
I created two Runners and executed them in parallel (configured JUnit to do that). Each Runner uses a different spring profile.