79716349

Date: 2025-07-27 11:08:19
Score: 1
Natty:
Report link

You're facing common Cypress + TS + Jest conflicts. Add Cypress types At the top of your test file


/// <reference types="cypress" />
export {}; // makes file a TS module

Also update .eslintrc to

"globals": {
  "cy": "readonly",
  "Cypress": "readonly",
  "describe": "readonly",
  "it": "readonly"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Patrick Azu