# ava/no-identical-title 📝 Disallow identical test titles. 💼 This rule is enabled in the ✅ `recommended` [config](https://github.com/avajs/eslint-plugin-ava#recommended-config). Translations: [Français](https://github.com/avajs/ava-docs/blob/main/fr_FR/related/eslint-plugin-ava/docs/rules/no-identical-title.md) Disallow tests with identical titles as it makes it hard to differentiate them. ## Examples ```js import test from 'ava'; // ❌ test('foo', t => { t.pass(); }); test('foo', t => { t.pass(); }); // ✅ test('foo', t => { t.pass(); }); test('bar', t => { t.pass(); }); ```