Skip to content

Releases: playwright-community/eslint-plugin-playwright

v0.11.0

23 Aug 12:43
7fa4619
Compare
Choose a tag to compare

New Matchers

Bug fixes

  • Reduce scope of no-conditional-in-test to top level conditionals by @mskelton in #80
  • Fix max-nested-describe README.md url by @JamyGolden in #77

Maintenance

New Contributors

Full Changelog: v0.10.0...v0.11.0

v0.10.0

23 Jul 14:46
f9528ee
Compare
Choose a tag to compare

What's Changed

  • feat: add new toHaveScreenshot assertion by @ssams in #52
  • Add new "maxNestedDescribe" rule by @ozyx in #57
  • Add new "noConditionalInTest" rule by @ozyx in #59
  • Fix double await by @mskelton in #63

New Contributors

  • @ssams made their first contribution in #52
  • @ozyx made their first contribution in #57

Full Changelog: v0.9.0...v0.10.0

v0.9.0

28 Apr 14:20
Compare
Choose a tag to compare

What's Changed / Highlights

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

26 Jan 14:50
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.7.1...v0.8.0

v0.7.1

22 Dec 01:38
961fb6b
Compare
Choose a tag to compare

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

21 Dec 14:45
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.6.0...v0.7.0

v0.6.0

12 Oct 14:43
Compare
Choose a tag to compare

What's Changed

  • Add support for test.step in missing-playwright-await rule by @mskelton in #29

Full Changelog: v0.5.2...v0.6.0

v0.5.2

04 Oct 19:20
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.5.1...v0.5.2

v0.5.1

22 Sep 14:13
Compare
Choose a tag to compare

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

15 Sep 18:12
Compare
Choose a tag to compare

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 awaits 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! 💯