📝 Disallow identical test titles.
💼 This rule is enabled in the ✅ recommended config.
Translations: Français
Disallow tests with identical titles as it makes it hard to differentiate them.
import test from 'ava';
// ❌
test('foo', t => {
t.pass();
});
test('foo', t => {
t.pass();
});
// ✅
test('foo', t => {
t.pass();
});
test('bar', t => {
t.pass();
});