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.
49 lines
1.5 KiB
Markdown
49 lines
1.5 KiB
Markdown
# minipass-collect
|
|
|
|
A Minipass stream that collects all the data into a single chunk
|
|
|
|
Note that this buffers ALL data written to it, so it's only good for
|
|
situations where you are sure the entire stream fits in memory.
|
|
|
|
Note: this is primarily useful for the `Collect.PassThrough` class, since
|
|
Minipass streams already have a `.collect()` method which returns a promise
|
|
that resolves to the array of chunks, and a `.concat()` method that returns
|
|
the data concatenated into a single Buffer or String.
|
|
|
|
## USAGE
|
|
|
|
```js
|
|
const Collect = require('minipass-collect')
|
|
|
|
const collector = new Collect()
|
|
collector.on('data', allTheData => {
|
|
console.log('all the data!', allTheData)
|
|
})
|
|
|
|
someSourceOfData.pipe(collector)
|
|
|
|
// note that you can also simply do:
|
|
someSourceOfData.pipe(new Minipass()).concat().then(data => ...)
|
|
// or even, if someSourceOfData is a Minipass:
|
|
someSourceOfData.concat().then(data => ...)
|
|
// but you might prefer to have it stream-shaped rather than
|
|
// Promise-shaped in some scenarios.
|
|
```
|
|
|
|
If you want to collect the data, but _also_ act as a passthrough stream,
|
|
then use `Collect.PassThrough` instead (for example to memoize streaming
|
|
responses), and listen on the `collect` event.
|
|
|
|
```js
|
|
const Collect = require('minipass-collect')
|
|
|
|
const collector = new Collect.PassThrough()
|
|
collector.on('collect', allTheData => {
|
|
console.log('all the data!', allTheData)
|
|
})
|
|
|
|
someSourceOfData.pipe(collector).pipe(someOtherStream)
|
|
```
|
|
|
|
All [minipass options](http://npm.im/minipass) are supported.
|