eslint-plugin-jest-extended
eslint-plugin-jest-extended copied to clipboard
More suggestions
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.