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
import{render,screen}from'@testing-library/react';// OR just (but not very useful): import { screen } from '@testing-library/react';
...
screen.debug();// IS detected as lint
where as
import{screen,render}from'@testing-library/react';
...
screen.debug();// is NOT detected as lint -- and should be