💼 This rule is enabled in the ✅ recommended
config.
Translations: Français
Prevent the use of duplicate test modifiers.
const test = require('ava');
test.only.only(t => {});
test.serial.serial(t => {});
test.beforeEach.beforeEach(t => {});
const test = require('ava');
test.only(t => {});
test.serial(t => {});
test.beforeEach(t => {});