Releases: playwright-community/eslint-plugin-playwright
Releases · playwright-community/eslint-plugin-playwright
v0.21.0
0.21.0 (2024-01-02)
Bug Fixes
- Fix more edge cases with
missing-playwright-await
(#190) (f2aa1ec)
Features
- Add
allowed
option for no-raw-locators
(#189) (ae52f21)
v0.20.0
0.20.0 (2023-12-11)
Bug Fixes
Features
- Add missed assertions to the 'missing-playwright-await' rule (#181) (b54e7df)
v0.19.0
0.19.0 (2023-11-30)
Bug Fixes
- Support older ESLint versions that don't support
context.sourceCode
(#180) (0419585)
Features
v0.18.0
0.18.0 (2023-10-22)
Bug Fixes
Features
- Add
allowConditional
option to no-skipped-test
(#174) (34b3f7b)
v0.16.0
0.16.0 (2023-08-27)
Features
- Add
no-raw-locators
rule (#160) (81d7f54)
- Allow additional assert function names with
expect-expect
(#155) (b00c3e3)
v0.15.3
0.15.3 (2023-07-04)
Bug Fixes
- Only support
...Expect
as a variation to expect
. This prevents false negatives such as expectSomethingToBe()
but still will catch softExpect()
type variants. (ec35829), closes #153
v0.15.2
0.15.2 (2023-06-27)
Bug Fixes
- Fix false positive for
expect-expect
when using test.step
(e7b108d), closes #149
- Support custom expect objects created with
expect.configure
(73e4d06), closes #150
v0.15.1
0.15.1 (2023-06-21)
Bug Fixes
- Fewer false negatives for
no-useless-await
(79d8c7d)