Files
flights_web_raw/e2e/package.json
T
gnezim e0c989755e Fix code quality issues in E2E Cypress infrastructure
- Fix specPattern in cypress.config.ts: change from '*.cy.ts' to '*.spec.ts' to match actual test file naming convention
- Fix forbidGeolocation command: use callsFake() instead of rejects() which is not a valid Cypress stub method
- Remove redundant localStorage cleanup: keep only afterEach hook, remove beforeEach hook to avoid duplication
- Remove unused @cypress/schematic dependency from e2e/package.json
- Add comprehensive README.md with E2E testing documentation covering test structure, setup, running tests, custom commands, and best practices
2026-04-05 19:09:43 +03:00

18 lines
495 B
JSON

{
"name": "@aeroflot-flights/e2e",
"version": "1.0.0",
"private": true,
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"backstop:reference": "backstop reference --config=backstop/backstop-angular.json",
"backstop:test": "backstop test --config=backstop/backstop-react.json",
"validate": "bash ../scripts/full-validation.sh"
},
"devDependencies": {
"cypress": "^13.6.0",
"backstopjs": "^6.3.0",
"typescript": "^5.3.0"
}
}