We are currently using karate 0.9.6 in our testing framework and requirement is somehow to match entire response body with file stored as a json(it's a finance based application where we need to verify entire response body)
I am trying to migrate to 1.0.1 as per the upgrade guide
The scenario in which we are asserting against the saved response is failing with Java Heap space error after upgrading to 1.0.1
Due to security constraint i can't put the response body here so i tried with open source api with large response body and it is failing to with below use case
Given url "https://jsonplaceholder.typicode.com/photos"
And json expected_resp =read('classpath:<path_to_saved_file>/response.json')
When method GET
Then status 200
Then match response == '#(^^expected_resp)'
PS: I've already all the steps mentioned in here