Translations: Français
Disallow tests with identical titles as it makes it hard to differentiate them.
const test = require('ava');
test('foo', t => {
t.pass();
});
test('foo', t => {
t.pass();
});
const test = require('ava');
test(t => {
t.pass();
});
test('foo', t => {
t.pass();
});
test('bar', t => {
t.pass();
});