Can we append custom text with match in Karate DSL like:
- match city == 'Pune', 'City Name matching'
Here, it is trying to match whole text 'Pune City Name matching'. But I want to match only 'Pune' and need to append text like 'City Name matching'
Something like below: Assert.assertEquals(city, "Pune", "City Name Check Completed");