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
Playwright assertions (https://playwright.dev/docs/test-assertions) are split into auto-retrying assertions and non-retrying assertions.
A new rule can be created perhaps with the name no-useless-await-expect that would disallow unnecessary awaits for Playwright expects.
no-useless-await-expect
Example of incorrect code:
await expect(true).toBeTruthy()
Example of correct code:
expect(true).toBeTruthy()
The text was updated successfully, but these errors were encountered:
+1 for this rule.
Sorry, something went wrong.
e283efc
🎉 This issue has been resolved in version 1.8.0 🎉
The release is available on:
Your semantic-release bot 📦🚀
Thanks for the effort! 🍻
No branches or pull requests
Playwright assertions (https://playwright.dev/docs/test-assertions) are split into auto-retrying assertions and non-retrying assertions.
A new rule can be created perhaps with the name
no-useless-await-expect
that would disallow unnecessary awaits for Playwright expects.Example of incorrect code:
Example of correct code:
The text was updated successfully, but these errors were encountered: