💼 This rule is enabled in the ✅ recommended
config.
all
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
Examples of incorrect code for this rule:
it('is awesome', () => {
/* ... */
})
it('is awesome', () => {
/* ... */
})
Examples of correct code for this rule:
it('is awesome', () => {
/* ... */
})
it('is very awesome', () => {
/* ... */
})