The configuration files (cypress.config.ts,cypress/support/, cypress/plugins/ were automatically migrated by cypress during the upgrade process.
Converts our cypress tests from .js files to .ts
Fixes flaky tests for login page due to running assertions before the API request finishes
Even before these changes, there were quite a few TypeScript issues with our Cypress set up due to misconfiguration in our tsconfig files. I think this might have been the reason we were using js files. This should resolve those.
Changes
cypress.config.ts
,cypress/support/
,cypress/plugins/
were automatically migrated by cypress during the upgrade process..js
files to.ts
js
files. This should resolve those.Checklist