Code Review Videos > Articles by: Chris

How I Fixed: error TS2551: Property ‘toEqual’ does not exist on type ‘Assertion’. Did you mean ‘equal’?

If you’re working with Cypress and Jest in the same project, TypeScript may throw errors that the standard Jest assertions are not valid types on the Assertion class. The error I get looks like this: Though in the IDE, even before running the tests, you will likely see something like this: This is a pretty … Read more

How I Fixed: We’ve found 2 Cypress configuration files named cypress.config.ts, cypress.config.js

If you’re using Cypress with TypeScript in your project, it’s possible you may encounter the following error message when trying to run Cypress: And how this looks in Cypress itself: The issue is fairly easy to resolve. Simply delete all the conflicting configuration files. In my case I wanted to keep cypress.config.ts, and so remove … Read more