I am trying to match the following pattern:
Testcase done, result: {error,
{test_case_failed,
"Fail: Not all values are as close to expected values."}}
Here, I am using the following regex to match the above pattern:
Testcase\s+done,\s+result:\s+\{(.*?)\}
However, my pattern is not working.