Vaclav Gabriel

Results 6 comments of Vaclav Gabriel

Hello @flotwig, may you please update your great plugin so it is compatible with the Cypress 10? 🙏 There is no alternative for debugging console logs. Many thanks!

> I have the same issue. Has anyone found a workaround? My workaround is to mock the status code of such requests: ``` // adjust status code for each request...

I am using the newest versions of both Cypress and `@testing-library/cypress`. And commands are imported only in the `commands.js` file: `import '@testing-library/cypress/add-commands'`

I solved this issue by removing all exports from the `cypress/support/commands.ts` file. Now, I have there only imports and commands.

What does your `e2e.js` file look like?

I don't think you need this line: `import {configure} from "@testing-library/cypress";` as you are already importing the testing library in `commands.js` 🤔 Also, try to move all imports and requires...