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
JavaScript
69 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
var callBound = require('call-bound');
|
|
var inspect = require('object-inspect');
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
var $Map = GetIntrinsic('%Map%', true);
|
|
|
|
/** @type {<K, V>(thisArg: Map<K, V>, key: K) => V} */
|
|
var $mapGet = callBound('Map.prototype.get', true);
|
|
/** @type {<K, V>(thisArg: Map<K, V>, key: K, value: V) => void} */
|
|
var $mapSet = callBound('Map.prototype.set', true);
|
|
/** @type {<K, V>(thisArg: Map<K, V>, key: K) => boolean} */
|
|
var $mapHas = callBound('Map.prototype.has', true);
|
|
/** @type {<K, V>(thisArg: Map<K, V>, key: K) => boolean} */
|
|
var $mapDelete = callBound('Map.prototype.delete', true);
|
|
/** @type {<K, V>(thisArg: Map<K, V>) => number} */
|
|
var $mapSize = callBound('Map.prototype.size', true);
|
|
|
|
/** @type {import('.')} */
|
|
module.exports = !!$Map && /** @type {Exclude<import('.'), false>} */ function getSideChannelMap() {
|
|
/** @typedef {ReturnType<typeof getSideChannelMap>} Channel */
|
|
/** @typedef {Parameters<Channel['get']>[0]} K */
|
|
/** @typedef {Parameters<Channel['set']>[1]} V */
|
|
|
|
/** @type {Map<K, V> | undefined} */ var $m;
|
|
|
|
/** @type {Channel} */
|
|
var channel = {
|
|
assert: function (key) {
|
|
if (!channel.has(key)) {
|
|
throw new $TypeError('Side channel does not contain ' + inspect(key));
|
|
}
|
|
},
|
|
'delete': function (key) {
|
|
if ($m) {
|
|
var result = $mapDelete($m, key);
|
|
if ($mapSize($m) === 0) {
|
|
$m = void undefined;
|
|
}
|
|
return result;
|
|
}
|
|
return false;
|
|
},
|
|
get: function (key) { // eslint-disable-line consistent-return
|
|
if ($m) {
|
|
return $mapGet($m, key);
|
|
}
|
|
},
|
|
has: function (key) {
|
|
if ($m) {
|
|
return $mapHas($m, key);
|
|
}
|
|
return false;
|
|
},
|
|
set: function (key, value) {
|
|
if (!$m) {
|
|
// @ts-expect-error TS can't handle narrowing a variable inside a closure
|
|
$m = new $Map();
|
|
}
|
|
$mapSet($m, key, value);
|
|
}
|
|
};
|
|
|
|
// @ts-expect-error TODO: figure out why TS is erroring here
|
|
return channel;
|
|
};
|