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.
68 lines
1.9 KiB
TypeScript
68 lines
1.9 KiB
TypeScript
declare namespace pMap {
|
|
interface Options {
|
|
/**
|
|
Number of concurrently pending promises returned by `mapper`.
|
|
|
|
Must be an integer from 1 and up or `Infinity`.
|
|
|
|
@default Infinity
|
|
*/
|
|
readonly concurrency?: number;
|
|
|
|
/**
|
|
When set to `false`, instead of stopping when a promise rejects, it will wait for all the promises to settle and then reject with an [aggregated error](https://github.com/sindresorhus/aggregate-error) containing all the errors from the rejected promises.
|
|
|
|
@default true
|
|
*/
|
|
readonly stopOnError?: boolean;
|
|
}
|
|
|
|
/**
|
|
Function which is called for every item in `input`. Expected to return a `Promise` or value.
|
|
|
|
@param element - Iterated element.
|
|
@param index - Index of the element in the source array.
|
|
*/
|
|
type Mapper<Element = any, NewElement = unknown> = (
|
|
element: Element,
|
|
index: number
|
|
) => NewElement | Promise<NewElement>;
|
|
}
|
|
|
|
/**
|
|
@param input - Iterated over concurrently in the `mapper` function.
|
|
@param mapper - Function which is called for every item in `input`. Expected to return a `Promise` or value.
|
|
@returns A `Promise` that is fulfilled when all promises in `input` and ones returned from `mapper` are fulfilled, or rejects if any of the promises reject. The fulfilled value is an `Array` of the fulfilled values returned from `mapper` in `input` order.
|
|
|
|
@example
|
|
```
|
|
import pMap = require('p-map');
|
|
import got = require('got');
|
|
|
|
const sites = [
|
|
getWebsiteFromUsername('https://sindresorhus'), //=> Promise
|
|
'https://ava.li',
|
|
'https://github.com'
|
|
];
|
|
|
|
(async () => {
|
|
const mapper = async site => {
|
|
const {requestUrl} = await got.head(site);
|
|
return requestUrl;
|
|
};
|
|
|
|
const result = await pMap(sites, mapper, {concurrency: 2});
|
|
|
|
console.log(result);
|
|
//=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/']
|
|
})();
|
|
```
|
|
*/
|
|
declare function pMap<Element, NewElement>(
|
|
input: Iterable<Element>,
|
|
mapper: pMap.Mapper<Element, NewElement>,
|
|
options?: pMap.Options
|
|
): Promise<NewElement[]>;
|
|
|
|
export = pMap;
|