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.
65 lines
2.0 KiB
Markdown
65 lines
2.0 KiB
Markdown
# minizlib
|
|
|
|
A fast zlib stream built on [minipass](http://npm.im/minipass) and
|
|
Node.js's zlib binding.
|
|
|
|
This module was created to serve the needs of
|
|
[node-tar](http://npm.im/tar) and
|
|
[minipass-fetch](http://npm.im/minipass-fetch).
|
|
|
|
Brotli is supported in versions of node with a Brotli binding.
|
|
|
|
## How does this differ from the streams in `'node:zlib'`?
|
|
|
|
First, there are no convenience methods to compress or decompress a
|
|
buffer. If you want those, use the built-in `zlib` module. This is
|
|
only streams. That being said, Minipass streams to make it fairly easy to
|
|
use as one-liners: `new zlib.Deflate().end(data).read()` will return the
|
|
deflate compressed result.
|
|
|
|
This module compresses and decompresses the data as fast as you feed
|
|
it in. It is synchronous, and runs on the main process thread. Zlib
|
|
and Brotli operations can be high CPU, but they're very fast, and doing it
|
|
this way means much less bookkeeping and artificial deferral.
|
|
|
|
Node's built in zlib streams are built on top of `stream.Transform`.
|
|
They do the maximally safe thing with respect to consistent
|
|
asynchrony, buffering, and backpressure.
|
|
|
|
See [Minipass](http://npm.im/minipass) for more on the differences between
|
|
Node.js core streams and Minipass streams, and the convenience methods
|
|
provided by that class.
|
|
|
|
## Classes
|
|
|
|
- Deflate
|
|
- Inflate
|
|
- Gzip
|
|
- Gunzip
|
|
- DeflateRaw
|
|
- InflateRaw
|
|
- Unzip
|
|
- BrotliCompress (Node v10 and higher)
|
|
- BrotliDecompress (Node v10 and higher)
|
|
- ZstdCompress (Node v22.15 and higher)
|
|
- ZstdDecompress (Node v22.15 and higher)
|
|
|
|
## USAGE
|
|
|
|
```js
|
|
import { BrotliDecompress } from 'minizlib'
|
|
// or: const BrotliDecompress = require('minizlib')
|
|
|
|
const input = sourceOfCompressedData()
|
|
const decode = new BrotliDecompress()
|
|
const output = whereToWriteTheDecodedData()
|
|
input.pipe(decode).pipe(output)
|
|
```
|
|
|
|
## REPRODUCIBLE BUILDS
|
|
|
|
To create reproducible gzip compressed files across different operating
|
|
systems, set `portable: true` in the options. This causes minizlib to set
|
|
the `OS` indicator in byte 9 of the extended gzip header to `0xFF` for
|
|
'unknown'.
|