all
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
When tests are empty it's better to mark them as test.todo
as it will be highlighted in tests summary output.
The following pattern is considered a warning:
test('foo');
test('foo', () => {})
test.skip('foo', () => {})
The following pattern is not considered a warning:
test.todo('foo');