jest-community / eslint-plugin-jest

ESLint plugin for Jest
MIT License
1.12k stars 228 forks source link

[new rule] prefer-jest-mocked #1597

Closed MillerSvt closed 1 month ago

MillerSvt commented 1 month ago

Incorrect code:

(someMethod as jest.Mock)

Correct code:

jest.mocked(someMethod)

Support autofix: yes

I can do this. Awaiting for feedback.

SimenB commented 1 month ago

Duplicate of #1470

But yes, PR very much welcome!