Title here
Summary here
This rule looks for every call to expect and reports them if they are called without assertion.
it("fails as expected", function() {
expect(true);
});
it("fails as expected", function() {
return expect(true);
});
it("works as expected", function() {
expect(true).to.be.ok;
});
it("works as expected", function() {
return expect(true).to.be.ok;
});