📝 Disallow identical titles.
💼recommended config. This rule warns in the 🌐 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', () => {
/* ... */
})