valid-describe-callback
Configuration
rslint.config.ts
Rule Details
Enforce valid describe() callback usage in Jest. A describe block should include both a suite name and a callback function, the callback must not be async, should not take parameters (except in describe.each(...)), and should not return a value.
Examples of incorrect code for this rule:
Examples of correct code for this rule: