Releases: playwright-community/eslint-plugin-playwright
v0.9.0
What's Changed / Highlights
- Add new "no element handle" rule by @elaichenkov in #40
- Add new "no eval" rule by @elaichenkov in #41
- Add new "noFocusedTest" rule by @elaichenkov in #44
- Add new "noWaitForTimeout" rule by @elaichenkov in #46
- Add new "noSkippedTest" rule by @elaichenkov in #45
- Add new "no force option" rule by @elaichenkov in #47
New Contributors
- @elaichenkov made their first contribution in #40. Thank you so much for contributing to the project!
Full Changelog: v0.8.0...v0.9.0
v0.8.0
v0.7.1
Fixed an issue with the plugin due to the new no-page-pause rule not being imported.
Full Changelog: v0.7.0...v0.7.1
v0.7.0
v0.6.0
v0.5.2
v0.5.1
This release fixes a few small bugs.
Fix Playwright test matchers
Previously the plugin was using an outdated list of Playwright test matchers from before they were released. We've fixed this so now the correct Playwright test matchers are used.
Disable the no-empty-pattern
rule for Playwright test
When using Playwright test, fixtures that do not depend on any other fixtures must still use an empty object to work properly. Because this conflicts with the goal of the no-empty-pattern
rule, we've disabled this rule to make it easier to create fixtures for your Playwright tests.
Special thanks to @mskelton and @mxschmitt! 💯
v0.5.0
This release brings our support for the Playwright test runner up to par and fixes a false positive.
Update matcher list
We now will warn about missing await
s for all Playwright test matchers. This means a more pleasant development experience for Playwright test users.
Fix false positive
We no longer war warn about missing awaits when returning from an arrow function. This fixes a false positive that was identified in issue #21.
Special thanks to @mskelton! 💯