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.
107 lines
2.4 KiB
TypeScript
107 lines
2.4 KiB
TypeScript
export type {
|
|
ActionFunction,
|
|
ActionFunctionArgs,
|
|
AgnosticDataIndexRouteObject,
|
|
AgnosticDataNonIndexRouteObject,
|
|
AgnosticDataRouteMatch,
|
|
AgnosticDataRouteObject,
|
|
AgnosticIndexRouteObject,
|
|
AgnosticNonIndexRouteObject,
|
|
AgnosticPatchRoutesOnNavigationFunction,
|
|
AgnosticPatchRoutesOnNavigationFunctionArgs,
|
|
AgnosticRouteMatch,
|
|
AgnosticRouteObject,
|
|
DataStrategyFunction,
|
|
DataStrategyFunctionArgs,
|
|
DataStrategyMatch,
|
|
DataStrategyResult,
|
|
ErrorResponse,
|
|
FormEncType,
|
|
FormMethod,
|
|
HTMLFormMethod,
|
|
JsonFunction,
|
|
LazyRouteFunction,
|
|
LoaderFunction,
|
|
LoaderFunctionArgs,
|
|
ParamParseKey,
|
|
Params,
|
|
PathMatch,
|
|
PathParam,
|
|
PathPattern,
|
|
RedirectFunction,
|
|
ShouldRevalidateFunction,
|
|
ShouldRevalidateFunctionArgs,
|
|
TrackedPromise,
|
|
UIMatch,
|
|
V7_FormMethod,
|
|
DataWithResponseInit as UNSAFE_DataWithResponseInit,
|
|
} from "./utils";
|
|
|
|
export {
|
|
AbortedDeferredError,
|
|
data,
|
|
defer,
|
|
generatePath,
|
|
getToPathname,
|
|
isRouteErrorResponse,
|
|
joinPaths,
|
|
json,
|
|
matchPath,
|
|
matchRoutes,
|
|
normalizePathname,
|
|
redirect,
|
|
redirectDocument,
|
|
replace,
|
|
resolvePath,
|
|
resolveTo,
|
|
stripBasename,
|
|
} from "./utils";
|
|
|
|
export type {
|
|
BrowserHistory,
|
|
BrowserHistoryOptions,
|
|
HashHistory,
|
|
HashHistoryOptions,
|
|
History,
|
|
InitialEntry,
|
|
Location,
|
|
MemoryHistory,
|
|
MemoryHistoryOptions,
|
|
Path,
|
|
To,
|
|
} from "./history";
|
|
|
|
export {
|
|
Action,
|
|
createBrowserHistory,
|
|
createHashHistory,
|
|
createMemoryHistory,
|
|
createPath,
|
|
parsePath,
|
|
} from "./history";
|
|
|
|
export * from "./router";
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// DANGER! PLEASE READ ME!
|
|
// We consider these exports an implementation detail and do not guarantee
|
|
// against any breaking changes, regardless of the semver release. Use with
|
|
// extreme caution and only if you understand the consequences. Godspeed.
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
/** @internal */
|
|
export type { RouteManifest as UNSAFE_RouteManifest } from "./utils";
|
|
export {
|
|
DeferredData as UNSAFE_DeferredData,
|
|
ErrorResponseImpl as UNSAFE_ErrorResponseImpl,
|
|
convertRoutesToDataRoutes as UNSAFE_convertRoutesToDataRoutes,
|
|
convertRouteMatchToUiMatch as UNSAFE_convertRouteMatchToUiMatch,
|
|
decodePath as UNSAFE_decodePath,
|
|
getResolveToMatches as UNSAFE_getResolveToMatches,
|
|
} from "./utils";
|
|
|
|
export {
|
|
invariant as UNSAFE_invariant,
|
|
warning as UNSAFE_warning,
|
|
} from "./history";
|