eslint-plugin-jest-extended icon indicating copy to clipboard operation
eslint-plugin-jest-extended copied to clipboard

More suggestions

Open RettentoRectangle opened this issue 1 year ago • 2 comments

It'd be nice to have more suggestions:

expect(typeof x === 'string') -> expect(x).toBeString() expect(typeof x === 'boolean') -> expect(x).toBeBoolean() expect(typeof x === 'number') -> expect(x).toBeNumber() expect(x.includes(y)) -> expect(x).toInclude(y)

And so on.

RettentoRectangle avatar Apr 18 '23 07:04 RettentoRectangle