You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using await with userEvent.type's delay option is correct, but is incorrectly flagged as a lint error.
async()=>{constdelay=10// error `userEvent.type` is sync and does not need `await` operator testing-library/no-await-sync-eventsawaituserEvent.type(element,text,{delay})}