We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The testing-library/prefer-wait-for rule catches calls to any function named wait, even if not referencing the wait exported from testing-library.
testing-library/prefer-wait-for
wait
// someNonTestFile.ts async function wait(): Promise<any> { // doesn't matter } function callsWait(): void { await wait(); // Linter complains "`wait` is deprecated in favor of `waitFor` eslint(testing-library/prefer-wait-for)" }
The text was updated successfully, but these errors were encountered:
test: add test for #145
598d476
test: add test for #145 (#181)
b9eb9b0
🎉 This issue has been resolved in version 3.3.2 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The
testing-library/prefer-wait-for
rule catches calls to any function namedwait
, even if not referencing thewait
exported from testing-library.The text was updated successfully, but these errors were encountered: