You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would ease up the usage especially in jest-playwright or other Playwright wrappers if we could pass the timeout for Playwright via the options. Maybe two timeouts, one for navigation and the other general one.
The original issue which this would ease up to solve is that the Jest timeout needs to be greater than the Playwright timeout. Otherwise Jest just stops the execution and no good error reporting will be generated out of that (which function call / Promise was not resolved).
As a workaround context.setDefaultTimeout() or context.setDefaultNavigationTimeout can be used.
The text was updated successfully, but these errors were encountered:
It would ease up the usage especially in
jest-playwright
or other Playwright wrappers if we could pass the timeout for Playwright via the options. Maybe two timeouts, one for navigation and the other general one.The original issue which this would ease up to solve is that the Jest timeout needs to be greater than the Playwright timeout. Otherwise Jest just stops the execution and no good error reporting will be generated out of that (which function call / Promise was not resolved).
As a workaround
context.setDefaultTimeout()
orcontext.setDefaultNavigationTimeout
can be used.The text was updated successfully, but these errors were encountered: