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.
41 lines
1.9 KiB
Markdown
41 lines
1.9 KiB
Markdown
## @npmcli/agent
|
|
|
|
A pair of Agent implementations for nodejs that provide consistent keep-alives, granular timeouts, dns caching, and proxy support.
|
|
|
|
### Usage
|
|
|
|
```js
|
|
const { getAgent, HttpAgent } = require('@npmcli/agent')
|
|
const fetch = require('minipass-fetch')
|
|
|
|
const main = async () => {
|
|
// if you know what agent you need, you can create one directly
|
|
const agent = new HttpAgent(agentOptions)
|
|
// or you can use the getAgent helper, it will determine and create an Agent
|
|
// instance for you as well as reuse that agent for new requests as appropriate
|
|
const agent = getAgent('https://registry.npmjs.org/npm', agentOptions)
|
|
// minipass-fetch is just an example, this will work for any http client that
|
|
// supports node's Agents
|
|
const res = await fetch('https://registry.npmjs.org/npm', { agent })
|
|
}
|
|
|
|
main()
|
|
```
|
|
|
|
### Options
|
|
|
|
All options supported by the node Agent implementations are supported here, see [the docs](https://nodejs.org/api/http.html#new-agentoptions) for those.
|
|
|
|
Options that have been added by this module include:
|
|
|
|
- `family`: what tcp family to use, can be `4` for IPv4, `6` for IPv6 or `0` for both.
|
|
- `proxy`: a URL to a supported proxy, currently supports `HTTP CONNECT` based http/https proxies as well as socks4 and 5.
|
|
- `dns`: configuration for the built-in dns cache
|
|
- `ttl`: how long (in milliseconds) to keep cached dns entries, defaults to `5 * 60 * 100 (5 minutes)`
|
|
- `lookup`: optional function to override how dns lookups are performed, defaults to `require('dns').lookup`
|
|
- `timeouts`: a set of granular timeouts, all default to `0`
|
|
- `connection`: time between initiating connection and actually connecting
|
|
- `idle`: time between data packets (if a top level `timeout` is provided, it will be copied here)
|
|
- `response`: time between sending a request and receiving a response
|
|
- `transfer`: time between starting to receive a request and consuming the response fully
|