diff --git a/src/rules/__tests__/no-test-prefixes.test.ts b/src/rules/__tests__/no-test-prefixes.test.ts index 731fe74fa..513576115 100644 --- a/src/rules/__tests__/no-test-prefixes.test.ts +++ b/src/rules/__tests__/no-test-prefixes.test.ts @@ -46,6 +46,18 @@ ruleTester.run('no-test-prefixes', rule, { }, ], }, + { + code: 'xdescribe.each([])("foo", function () {})', + output: 'describe.skip.each([])("foo", function () {})', + errors: [ + { + messageId: 'usePreferredName', + data: { preferredNodeName: 'describe.skip.each' }, + column: 1, + line: 1, + }, + ], + }, { code: 'fit("foo", function () {})', output: 'it.only("foo", function () {})',