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.
162 lines
4.6 KiB
JSON
Executable File
162 lines
4.6 KiB
JSON
Executable File
{
|
|
"schematics": {
|
|
"ng-new": {
|
|
"factory": "./ng-new",
|
|
"schema": "./ng-new/schema.json",
|
|
"description": "Create an Angular workspace.",
|
|
"hidden": true
|
|
},
|
|
"workspace": {
|
|
"factory": "./workspace",
|
|
"schema": "./workspace/schema.json",
|
|
"description": "Create an Angular workspace.",
|
|
"hidden": true
|
|
},
|
|
"service-worker": {
|
|
"factory": "./service-worker",
|
|
"description": "Initializes a service worker setup.",
|
|
"schema": "./service-worker/schema.json"
|
|
},
|
|
"application": {
|
|
"aliases": ["app"],
|
|
"factory": "./application",
|
|
"schema": "./application/schema.json",
|
|
"description": "Create an Angular application."
|
|
},
|
|
"private-e2e": {
|
|
"factory": "./e2e",
|
|
"schema": "./e2e/schema.json",
|
|
"description": "PRIVATE API - Do not use.",
|
|
"hidden": true
|
|
},
|
|
"class": {
|
|
"aliases": ["cl"],
|
|
"factory": "./class",
|
|
"description": "Create a class.",
|
|
"schema": "./class/schema.json"
|
|
},
|
|
"component": {
|
|
"aliases": ["c"],
|
|
"factory": "./component",
|
|
"description": "Create an Angular component.",
|
|
"schema": "./component/schema.json"
|
|
},
|
|
"directive": {
|
|
"aliases": ["d"],
|
|
"factory": "./directive",
|
|
"description": "Create an Angular directive.",
|
|
"schema": "./directive/schema.json"
|
|
},
|
|
"enum": {
|
|
"aliases": ["e"],
|
|
"factory": "./enum",
|
|
"description": "Create an enumeration.",
|
|
"schema": "./enum/schema.json"
|
|
},
|
|
"guard": {
|
|
"aliases": ["g"],
|
|
"factory": "./guard",
|
|
"description": "Create a guard.",
|
|
"schema": "./guard/schema.json"
|
|
},
|
|
"resolver": {
|
|
"aliases": ["r"],
|
|
"factory": "./resolver",
|
|
"description": "Create a resolver.",
|
|
"schema": "./resolver/schema.json"
|
|
},
|
|
"interceptor": {
|
|
"factory": "./interceptor",
|
|
"description": "Create an interceptor.",
|
|
"schema": "./interceptor/schema.json"
|
|
},
|
|
"interface": {
|
|
"aliases": ["i"],
|
|
"factory": "./interface",
|
|
"description": "Create an interface.",
|
|
"schema": "./interface/schema.json"
|
|
},
|
|
"module": {
|
|
"aliases": ["m"],
|
|
"factory": "./module",
|
|
"description": "Create an Angular module.",
|
|
"schema": "./module/schema.json"
|
|
},
|
|
"pipe": {
|
|
"aliases": ["p"],
|
|
"factory": "./pipe",
|
|
"description": "Create an Angular pipe.",
|
|
"schema": "./pipe/schema.json"
|
|
},
|
|
"service": {
|
|
"aliases": ["s"],
|
|
"factory": "./service",
|
|
"description": "Create an Angular service.",
|
|
"schema": "./service/schema.json"
|
|
},
|
|
"server": {
|
|
"factory": "./server",
|
|
"description": "Create an Angular server app.",
|
|
"schema": "./server/schema.json",
|
|
"hidden": true
|
|
},
|
|
"ssr": {
|
|
"factory": "./ssr",
|
|
"description": "Adds SSR to an Angular app.",
|
|
"schema": "./ssr/schema.json",
|
|
"hidden": true
|
|
},
|
|
"app-shell": {
|
|
"factory": "./app-shell",
|
|
"description": "Create an application shell.",
|
|
"schema": "./app-shell/schema.json"
|
|
},
|
|
"library": {
|
|
"aliases": ["lib"],
|
|
"factory": "./library",
|
|
"schema": "./library/schema.json",
|
|
"description": "Generate a library project for Angular."
|
|
},
|
|
"web-worker": {
|
|
"factory": "./web-worker",
|
|
"schema": "./web-worker/schema.json",
|
|
"description": "Create a Web Worker."
|
|
},
|
|
"environments": {
|
|
"factory": "./environments",
|
|
"schema": "./environments/schema.json",
|
|
"description": "Generate project environment files."
|
|
},
|
|
"config": {
|
|
"factory": "./config",
|
|
"schema": "./config/schema.json",
|
|
"description": "Generates a configuration file."
|
|
},
|
|
"ai-config": {
|
|
"factory": "./ai-config",
|
|
"schema": "./ai-config/schema.json",
|
|
"description": "Generates an AI tool configuration file."
|
|
},
|
|
"tailwind": {
|
|
"factory": "./tailwind",
|
|
"schema": "./tailwind/schema.json",
|
|
"hidden": true,
|
|
"private": true,
|
|
"description": "[INTERNAL] Adds tailwind to a project. Intended for use for ng new/add."
|
|
},
|
|
"refactor-jasmine-vitest": {
|
|
"factory": "./refactor/jasmine-vitest",
|
|
"schema": "./refactor/jasmine-vitest/schema.json",
|
|
"description": "[EXPERIMENTAL] Refactors Jasmine tests to use Vitest APIs.",
|
|
"hidden": true
|
|
},
|
|
"vitest-browser": {
|
|
"factory": "./vitest-browser",
|
|
"schema": "./vitest-browser/schema.json",
|
|
"hidden": true,
|
|
"private": true,
|
|
"description": "[INTERNAL] Adds a Vitest browser provider to a project. Intended for use for ng add."
|
|
}
|
|
}
|
|
}
|