My linter configuration throw errors because commands from cypress-testing-library seem to be not working properly.
-
cypress-testing-libraryversion: 8.0.3 -
nodeversion: 14.19.0 -
npm(oryarn) version: I am usingpnpmversion 7.2.1
Relevant code or config
Print screen of my cypress/support/command.js

What you did:
I am trying to use Cypress with cypress-testing-library (the entire project is using typescript).
What happened:
When I am trying to use, for example findByRole query I obtain this linter error.

Problem description:
The cypress components tests are able to run successfully but my linter config is no very happy about it.
I'm having the same problem.
Was having the same problem after following setup from cypress-testing-library docs, solved it by adding a reference comment like so:
/// <reference types="cypress" />
/// <reference types="@testing-library/cypress" />
/// add this at the top of your test files 👆
Hope it solves your problem!
Thanks Marcelo. I am gonna to try your solution.
If you're using TypeScript, just add @testing-library/cypress to your tsconfig.json under compilerOptions.types like this:
{
"compilerOptions": {
...
"types": [..., "@testing-library/cypress"]
}
}