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.
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "tmp",
|
|
"version": "0.2.5",
|
|
"description": "Temporary file and directory creator",
|
|
"author": "KARASZI István <github@spam.raszi.hu>",
|
|
"contributors": [
|
|
"Carsten Klein <trancesilken@gmail.com> (https://github.com/silkentrance)"
|
|
],
|
|
"keywords": [
|
|
"temporary",
|
|
"tmp",
|
|
"temp",
|
|
"tempdir",
|
|
"tempfile",
|
|
"tmpdir",
|
|
"tmpfile"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "https://github.com/raszi/node-tmp.git",
|
|
"homepage": "http://github.com/raszi/node-tmp",
|
|
"bugs": {
|
|
"url": "http://github.com/raszi/node-tmp/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.14"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"eslint": "^6.3.0",
|
|
"eslint-plugin-mocha": "^6.1.1",
|
|
"istanbul": "^0.4.5",
|
|
"lerna-changelog": "^1.0.1",
|
|
"mocha": "^10.2.0"
|
|
},
|
|
"main": "lib/tmp.js",
|
|
"files": [
|
|
"lib/"
|
|
],
|
|
"changelog": {
|
|
"labels": {
|
|
"breaking": ":boom: Breaking Change",
|
|
"enhancement": ":rocket: Enhancement",
|
|
"bug": ":bug: Bug Fix",
|
|
"documentation": ":memo: Documentation",
|
|
"internal": ":house: Internal"
|
|
},
|
|
"cacheDir": ".changelog"
|
|
},
|
|
"scripts": {
|
|
"changelog": "lerna-changelog",
|
|
"lint": "eslint lib --env mocha test",
|
|
"clean": "rm -Rf ./coverage",
|
|
"test": "npm run clean && istanbul cover ./node_modules/mocha/bin/_mocha --report none --print none --dir ./coverage/json -u exports -R test/*-test.js && istanbul report --root ./coverage/json html && istanbul report text-summary",
|
|
"doc": "jsdoc -c .jsdoc.json"
|
|
}
|
|
}
|