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.
68 lines
2.1 KiB
JSON
68 lines
2.1 KiB
JSON
{
|
|
"name": "@jridgewell/gen-mapping",
|
|
"version": "0.3.13",
|
|
"description": "Generate source maps",
|
|
"keywords": [
|
|
"source",
|
|
"map"
|
|
],
|
|
"main": "dist/gen-mapping.umd.js",
|
|
"module": "dist/gen-mapping.mjs",
|
|
"types": "types/gen-mapping.d.cts",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"types"
|
|
],
|
|
"exports": {
|
|
".": [
|
|
{
|
|
"import": {
|
|
"types": "./types/gen-mapping.d.mts",
|
|
"default": "./dist/gen-mapping.mjs"
|
|
},
|
|
"default": {
|
|
"types": "./types/gen-mapping.d.cts",
|
|
"default": "./dist/gen-mapping.umd.js"
|
|
}
|
|
},
|
|
"./dist/gen-mapping.umd.js"
|
|
],
|
|
"./package.json": "./package.json"
|
|
},
|
|
"scripts": {
|
|
"benchmark": "run-s build:code benchmark:*",
|
|
"benchmark:install": "cd benchmark && npm install",
|
|
"benchmark:only": "node --expose-gc benchmark/index.js",
|
|
"build": "run-s -n build:code build:types",
|
|
"build:code": "node ../../esbuild.mjs gen-mapping.ts",
|
|
"build:types": "run-s build:types:force build:types:emit build:types:mts",
|
|
"build:types:force": "rimraf tsconfig.build.tsbuildinfo",
|
|
"build:types:emit": "tsc --project tsconfig.build.json",
|
|
"build:types:mts": "node ../../mts-types.mjs",
|
|
"clean": "run-s -n clean:code clean:types",
|
|
"clean:code": "tsc --build --clean tsconfig.build.json",
|
|
"clean:types": "rimraf dist types",
|
|
"test": "run-s -n test:types test:only test:format",
|
|
"test:format": "prettier --check '{src,test}/**/*.ts'",
|
|
"test:only": "mocha",
|
|
"test:types": "eslint '{src,test}/**/*.ts'",
|
|
"lint": "run-s -n lint:types lint:format",
|
|
"lint:format": "npm run test:format -- --write",
|
|
"lint:types": "npm run test:types -- --fix",
|
|
"prepublishOnly": "npm run-s -n build test"
|
|
},
|
|
"homepage": "https://github.com/jridgewell/sourcemaps/tree/main/packages/gen-mapping",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jridgewell/sourcemaps.git",
|
|
"directory": "packages/gen-mapping"
|
|
},
|
|
"author": "Justin Ridgewell <justin@ridgewell.name>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@jridgewell/sourcemap-codec": "^1.5.0",
|
|
"@jridgewell/trace-mapping": "^0.3.24"
|
|
}
|
|
}
|