Hello,
How can I print the test case status and failure message/exception (if test failed) in the teardown script ?
Looking to just do something like
console.writeline("status:" + test.status)
if(test.status.failed)
console.write ("message: " + test.failuremessage)
Thanks