We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cypress-testing-library
node
npm
yarn
pnpm
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.
The text was updated successfully, but these errors were encountered:
I'm having the same problem.
Sorry, something went wrong.
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:
@testing-library/cypress
compilerOptions.types
{ "compilerOptions": { ... "types": [..., "@testing-library/cypress"] } }
No branches or pull requests
cypress-testing-library
version: 8.0.3node
version: 14.19.0npm
(oryarn
) version: I am usingpnpm
version 7.2.1Relevant 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.
The text was updated successfully, but these errors were encountered: