When logging requests using the RequestLogger, the requests array records the immediate response which isn't always present if the response takes more than a few seconds to return.
Is there a way to wait for the statusCode to return before the request gets logged, or a way to get the statusCode for the specified request when it has been returned?
Using await t.expect(logger.contains(r => r.response.statusCode === 200)).ok();
didn't work for me.