Does Karate support the execution of the called feature in parallel w.r.t data, when called using karate.call ? Example below -
def result = call read(sometest.feature) [{"a":10, "b":20, {{"a":11, "b":20}]
Does Karate support the invocation of sometest.feature in parallel for the two datasets in the JSON array?
I tried with a thread count of 2 for the given example and each object in the JSON array is picked up sequentially.