💼 This rule is enabled in the 🧪 tests config.
🔧 This rule is automatically fixable by the --fix CLI option.
Makes sure calls to userEvent APIs are awaited
Examples of incorrect code for this rule:
userEvent.press(button);Examples of correct code for this rule:
await userEvent.press(button);