We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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.