Testrail integration with postman API, How to add a comment to test case in testrail with postman?

I’m using testrail Integration with Postman / Newman API Tests , and it’s perfectlly updating test case status in testrail using this code :

pm.test(“C226750 C226746 Status code is 200”, function () {
    pm.response.to.have.status(200);
});

I need to know if it’s possible to add a comment to test case in testrail with postman ?

What exactly would you like the comment to contain?

hello,
i want to add a simple comment to the test case in testrail , like : the test is passed with response time (2s)

I am currently working on something that will allow that. I will post an update when it is done.

2 Likes