Files
gnezim 60e2149072 Add comprehensive e2e test suites for Tasks 16-25
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.
2026-04-05 19:25:03 +03:00

52 lines
1.4 KiB
JSON

{
"name": "unbzip2-stream",
"version": "1.4.3",
"description": "streaming unbzip2 implementation in pure javascript for node and browsers",
"keywords": [
"bzip",
"bzip2",
"bz2",
"stream",
"streaming",
"decompress",
"through"
],
"scripts": {
"prepare": "mkdir -p dist && browserify -s unbzip2Stream index.js | uglifyjs > dist/unbzip2-stream.min.js",
"browser-test": "browserify -t brfs test/simple.js | tape-run",
"prepare-long-test": "head -c 104857600 < /dev/urandom | tee test/fixtures/vmlinux.bin | bzip2 > test/fixtures/vmlinux.bin.bz2",
"long-test": "tape test/extra/long.js",
"download-test": "beefy test/browser/long.js --open -- -t brfs",
"test": "tape test/*.js"
},
"author": "Jan Bölsche <jan@lagomorph.de>",
"repository": {
"url": "https://github.com/regular/unbzip2-stream.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/regular/unbzip2-stream/issues"
},
"files": [
"index.js",
"lib",
"dist/unbzip2-stream.min.js"
],
"main": "index.js",
"devDependencies": {
"beefy": "^2.1.8",
"brfs": "^1.2.0",
"browserify": "^16.2.3",
"concat-stream": "^1.4.7",
"stream-equal": "^1.1.1",
"tape": "^4.9.2",
"tape-run": "^4.0.0",
"uglify-js": "^3.0.10"
},
"dependencies": {
"buffer": "^5.2.1",
"through": "^2.3.8"
},
"license": "MIT"
}