You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a quick fix to get this plugin running with Cypress 10 until it's updated.
If you have this error :
Error running e2e.setupNodeEvents()
The ignoreTestFiles configuration option is now invalid when set on the config object in Cypress version 10.0.0.
It is now renamed to excludeSpecPattern and configured separately as a testing type property: e2e.excludeSpecPattern
You can remplace the config argument of cypressDataSnapshot in cypress.config.ts by an empty object.
I don't know if it's because I use @badeball/cypress-cucumber-preprocessor or if it's an issue with Cypress 10, but I get an error when I try and create a snapshot:
Cannot read properties of null (reading 'match')
In order to fix this one I have to override the getTestFilePath command:
For compatibility for Cypress 10, a few changes are required, notably
excludeSpecPattern
instead ofignoreTestFiles
The text was updated successfully, but these errors were encountered: