Currently, we abort features/scenarios on various conditions, such as result in previous call did not contain desired data, but is it possible to add a text string to the karate.abort() as such?
* def resultFound = karate.get('resultFound', karate.abort('test'))
or possible allow something like this
* def resultFound = karate.get('resultFound', { karate.log('test'); karate.abort(); })