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
When using browserstack-node-sdk with Selenium and NodeJS integration, the SDK adds it's own afterAll() jest hook with a timeout of 10000ms (10seconds).
In my case when running any kind of tests (or even no tests) this timer gets exceeded so jest exits with error code even thoug all of the tests passed.
This timeout can't be increased by configuring jest as it is a argument passed to the afterAll() hook inside the SDK, so it takes precedence over other jest configurations
Please increase this timeout or provide a way to increase it