In the Playwright-runner it would be useful to add a check like:
if (page.getNavigationTimeout() > runner.timeout) {
console.warning("Since Runner timeout is < Playwright timeout we increased the runner timeout to ensure good error reporting.")
// Alternatively call [Page.setDefaultTimeout](https://playwright.dev/#version=v1.3.0&path=docs%2Fapi.md&q=pagesetdefaulttimeouttimeout)
}
For that we need to expose the timeout so its accessible.