💼 This rule is enabled in the ✅ recommended
config.
Translations: Français
Tests should have a title. AVA v1.0.1 and later enforces this at runtime.
const test = require('ava');
test(t => {
t.pass();
});
const test = require('ava');
test('foo', t => {
t.pass();
});