#testing-library
problem: findByRole, findByLabel, findByText, findByDisplayValue - underlined, eslint complains
I followed the instructions from the
https://testing-library.com/docs/cypress-testing-library/intro/ on how to setup cypress to make use of testing-library commands.
in package.json:
"@testing-library/cypress": "8.0.3",
in cypress>support>commands.ts I've added this line to the top of the file
import "@testing-library/cypress/add-commands";
still getting errors. how can I get it fixed?