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.
71 lines
1.7 KiB
JSON
71 lines
1.7 KiB
JSON
{
|
|
"name": "y18n",
|
|
"version": "5.0.8",
|
|
"description": "the bare-bones internationalization library used by yargs",
|
|
"exports": {
|
|
".": [
|
|
{
|
|
"import": "./index.mjs",
|
|
"require": "./build/index.cjs"
|
|
},
|
|
"./build/index.cjs"
|
|
]
|
|
},
|
|
"type": "module",
|
|
"module": "./build/lib/index.js",
|
|
"keywords": [
|
|
"i18n",
|
|
"internationalization",
|
|
"yargs"
|
|
],
|
|
"homepage": "https://github.com/yargs/y18n",
|
|
"bugs": {
|
|
"url": "https://github.com/yargs/y18n/issues"
|
|
},
|
|
"repository": "yargs/y18n",
|
|
"license": "ISC",
|
|
"author": "Ben Coe <bencoe@gmail.com>",
|
|
"main": "./build/index.cjs",
|
|
"scripts": {
|
|
"check": "standardx **/*.ts **/*.cjs **/*.mjs",
|
|
"fix": "standardx --fix **/*.ts **/*.cjs **/*.mjs",
|
|
"pretest": "rimraf build && tsc -p tsconfig.test.json && cross-env NODE_ENV=test npm run build:cjs",
|
|
"test": "c8 --reporter=text --reporter=html mocha test/*.cjs",
|
|
"test:esm": "c8 --reporter=text --reporter=html mocha test/esm/*.mjs",
|
|
"posttest": "npm run check",
|
|
"coverage": "c8 report --check-coverage",
|
|
"precompile": "rimraf build",
|
|
"compile": "tsc",
|
|
"postcompile": "npm run build:cjs",
|
|
"build:cjs": "rollup -c",
|
|
"prepare": "npm run compile"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.6.4",
|
|
"@wessberg/rollup-plugin-ts": "^1.3.1",
|
|
"c8": "^7.3.0",
|
|
"chai": "^4.0.1",
|
|
"cross-env": "^7.0.2",
|
|
"gts": "^3.0.0",
|
|
"mocha": "^8.0.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.26.10",
|
|
"standardx": "^7.0.0",
|
|
"ts-transform-default-export": "^1.0.2",
|
|
"typescript": "^4.0.0"
|
|
},
|
|
"files": [
|
|
"build",
|
|
"index.mjs",
|
|
"!*.d.ts"
|
|
],
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"standardx": {
|
|
"ignore": [
|
|
"build"
|
|
]
|
|
}
|
|
}
|