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
With isStrict: true the no-unnecessary-act rule only reports mixed RTL+non RTL calls, but does not report act with only RTL calls, which is the behaviour without isStrict enabled.
await act(async () => {
userEvent.click(contactSupport) // not reported when isStrict is true
})
I'll take a look at this one when I have the time.
The text was updated successfully, but these errors were encountered:
With
isStrict: true
theno-unnecessary-act
rule only reports mixed RTL+non RTL calls, but does not reportact
with only RTL calls, which is the behaviour withoutisStrict
enabled.I'll take a look at this one when I have the time.
The text was updated successfully, but these errors were encountered: