-
Notifications
You must be signed in to change notification settings - Fork 9.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tests: increase timeout for axe test #13386
Conversation
// https://github.com/dequelabs/axe-core/tree/b573b1c1/doc/examples/jest_react#timeout-issues | ||
/* timeout= */ 100 * 1000 | ||
/* timeout= */ process.env.CI ? 200 * 1000 : 60 * 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reduced for local run, is that ok?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
numerical separators are supported back to node 12, so you can do 200_000
etc.
but yes this sg
// https://github.com/dequelabs/axe-core/tree/b573b1c1/doc/examples/jest_react#timeout-issues | ||
/* timeout= */ 100 * 1000 | ||
/* timeout= */ process.env.CI ? 200 * 1000 : 60 * 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
numerical separators are supported back to node 12, so you can do 200_000
etc.
but yes this sg
This has timed out for me in GHA a few times now.