Collection with TimeOut considered a Test Success

Hello,

I am currently building a Test Collection which includes testing a Firewall.
One Case is, that a Request is gonna be denied by simple TimeOut without any response.

Is there a way to consider this a Test Success? Obviously I don’t want my Collection Runner to stop every Time.

I am very happy about hints in a good direction.
Thanks
Vera

would it have a “408 Request Timeout” response code? you could check for this with;

pm.test("Status code is 408", function () {
    pm.response.to.have.status(408);
});