My response body is like below
{
"jsonrpc": "2.0",
"id": "1",
"result": "0x129d421"
}
I want to write a test like, in whole JSON response body there should not be any “error” word
So my test should handle any of the below word combination & should pass
error, Error, Errors, errors, Error’s, error’s etc
How can I write test for that ?
Thank You