60e2149072
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date) - Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class - Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting - Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states - Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions - Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares) - Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline - Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements - Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations - Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary - Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds All tests follow AAA pattern and use data-testid selectors matching Angular version. Total: 245 tests across 10 feature suites.
69 lines
1.9 KiB
JSON
69 lines
1.9 KiB
JSON
{
|
|
"name": "@cypress/schematic",
|
|
"version": "2.5.2",
|
|
"description": "Official Cypress schematic for the Angular CLI",
|
|
"main": "./src",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:watch": "tsc -p tsconfig.json --watch",
|
|
"lint": "eslint --ext .ts,.json, .",
|
|
"test": "mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json src/**/*.spec.ts"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^3.0.0",
|
|
"rxjs": "~6.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/architect": "^0.1402.1",
|
|
"@angular-devkit/core": "^14.2.1",
|
|
"@angular-devkit/schematics": "^14.2.1",
|
|
"@angular-devkit/schematics-cli": "^14.2.1",
|
|
"@angular/cli": "^14.2.1",
|
|
"@schematics/angular": "^14.2.1",
|
|
"@types/chai-enzyme": "0.6.7",
|
|
"@types/mocha": "8.0.3",
|
|
"@types/node": "^18.17.5",
|
|
"chai": "4.2.0",
|
|
"mocha": "3.5.3",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@angular/cli": ">=14",
|
|
"@angular/core": ">=14"
|
|
},
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cypress-io/cypress.git"
|
|
},
|
|
"homepage": "https://github.com/cypress-io/cypress/tree/develop/npm/cypress-schematic#readme",
|
|
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fcypress-schematics&template=1-bug-report.md&title=",
|
|
"keywords": [
|
|
"schematics",
|
|
"cypress",
|
|
"e2e",
|
|
"testing",
|
|
"angular",
|
|
"automation"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"builders": "./src/builders/builders.json",
|
|
"ng-add": {
|
|
"save": "devDependencies"
|
|
},
|
|
"nx": {
|
|
"targets": {
|
|
"build": {
|
|
"outputs": [
|
|
"{projectRoot}/src/**/*.js",
|
|
"{projectRoot}/src/**/*.d.ts",
|
|
"{projectRoot}/src/**/*.js.map"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"schematics": "./src/schematics/collection.json"
|
|
}
|