### What rule do you want to change? await-async-events ### Does this change cause the rule to produce more or fewer warnings? More warnings ### How will the change be implemented? The code needs to detect calls to `userEvent.setup()` and calls to the resulting object's methods. ### Example code ```js import userEvent from '@testing-library/user-event'; const user = userEvent.setup(); user.click(domElement); ``` ### How does the current rule affect the code? `user.click()` and others returns a `Promise` and should be `await`ed. ### How will the new rule affect the code? ```js import userEvent from '@testing-library/user-event'; const user = userEvent.setup(); await user.click(domElement); ``` ### Anything else? see also https://github.com/testing-library/eslint-plugin-testing-library/issues/800 ### Do you want to submit a pull request to change the rule? No