📝 Disallow using the f and x prefixes in favour of .only and .skip.
all config.
🔧 This rule is automatically fixable by the --fix CLI option.
Examples of incorrect code for this rule:
xdescribe.each([])('foo', function () {})Examples of correct code for this rule:
describe.skip.each([])('foo', function () {})