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.
33 lines
1.3 KiB
TypeScript
Executable File
33 lines
1.3 KiB
TypeScript
Executable File
/**
|
|
* Creates a new class in your project. Classes are the fundamental building blocks for
|
|
* object-oriented programming in TypeScript. They provide a blueprint for creating objects
|
|
* with properties and methods. This schematic helps you generate a new class with the basic
|
|
* structure and optional test files.
|
|
*/
|
|
export type Schema = {
|
|
/**
|
|
* The name for the new class. This will be used to create the class file (e.g.,
|
|
* `my-class.ts`) and, if enabled, the corresponding test file `my-class.spec.ts`.
|
|
*/
|
|
name: string;
|
|
/**
|
|
* The path where the class file should be created, relative to the workspace root. If not
|
|
* specified, the class will be created in the current directory.
|
|
*/
|
|
path?: string;
|
|
/**
|
|
* The name of the project where the class should be added. If not specified, the CLI will
|
|
* determine the project from the current directory.
|
|
*/
|
|
project: string;
|
|
/**
|
|
* Skip the generation of a unit test file `spec.ts` for the new class.
|
|
*/
|
|
skipTests?: boolean;
|
|
/**
|
|
* Adds a custom type to the filename, allowing you to create more descriptive class names.
|
|
* For example, if you set the type to `helper`, the filename will be `my-class.helper.ts`.
|
|
*/
|
|
type?: string;
|
|
};
|