Closed
Description
Love that no-debug
rule, however:
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