Open
Description
The and
method is not supported by Jest, where Chai does support it.
It should probably cut the assertion in two:
- expect(ticketNumber).to.be.above(0).and.to.be.below(46)
+ expect(ticketNumber).toBeGreaterThan(0)
+ expect(ticketNumber).toBeLessThan(46)
Is this a feasible option for codemods?
If so: I'm willing to work on a PR.