Pattern: expect()
without .to
or .not_to
Issue: -
This rule checks void expect()
.
# bad
expect(something)
# good
expect(something).to be(1)
Pattern: expect()
without .to
or .not_to
Issue: -
This rule checks void expect()
.
# bad
expect(something)
# good
expect(something).to be(1)