This rule enforces that it()
descriptions start with a verb, not with "should".
Descriptions that start with "should" can usually be rewritten more concisely and without loss of information by dropping the "should" and starting with an appropriate verb. This is useful because it reduces the likelihood we'll have to introduce an ugly linebreak that harms readability.
Examples of incorrect code for this rule:
it('should reload after clicking', () => {
// ...
});
Examples of correct code for this rule:
it('reloads after clicking', () => {
// ...
});