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.
113 lines
2.9 KiB
JSON
113 lines
2.9 KiB
JSON
{
|
|
"name": "lazy-ass",
|
|
"description": "Lazy assertions without performance penalty",
|
|
"version": "1.6.0",
|
|
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
|
|
"bugs": {
|
|
"url": "https://github.com/bahmutov/lazy-ass/issues"
|
|
},
|
|
"config": {
|
|
"pre-git": {
|
|
"commit-msg": "simple",
|
|
"pre-commit": [
|
|
"npm test"
|
|
],
|
|
"pre-push": [
|
|
"npm run size"
|
|
],
|
|
"post-commit": [],
|
|
"post-merge": []
|
|
}
|
|
},
|
|
"contributors": [],
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@semantic-release/condition-travis": "4.1.4",
|
|
"bad-line": "0.1.1",
|
|
"condition-node-version": "1.2.0",
|
|
"coveralls": "2.11.6",
|
|
"expect.js": "0.3.1",
|
|
"git-issues": "1.2.0",
|
|
"grunt": "0.4.5",
|
|
"grunt-banner": "0.6.0",
|
|
"grunt-clean-console": "0.1.1",
|
|
"grunt-cli": "1.0.0-rc1",
|
|
"grunt-contrib-concat": "0.5.1",
|
|
"grunt-contrib-copy": "0.8.2",
|
|
"grunt-contrib-jshint": "1.0.0",
|
|
"grunt-contrib-uglify": "0.11.1",
|
|
"grunt-contrib-watch": "0.6.1",
|
|
"grunt-deps-ok": "0.9.0",
|
|
"grunt-gh-pages": "1.0.0",
|
|
"grunt-karma": "0.10.1",
|
|
"grunt-mocha-test": "0.12.7",
|
|
"grunt-nice-package": "0.10.3",
|
|
"grunt-npm2bower-sync": "0.9.1",
|
|
"jshint-stylish": "2.1.0",
|
|
"karma": "0.12.32",
|
|
"karma-chrome-launcher": "0.2.2",
|
|
"karma-coverage": "0.5.3",
|
|
"karma-mocha": "0.2.2",
|
|
"karma-phantomjs-launcher": "1.0.0",
|
|
"matchdep": "1.0.1",
|
|
"mocha": "2.4.5",
|
|
"phantomjs": "2.1.3",
|
|
"phantomjs-prebuilt": "2.1.12",
|
|
"pkgfiles": "2.3.2",
|
|
"pre-git": "3.4.0",
|
|
"semantic-release": "6.3.6",
|
|
"time-grunt": "1.4.0"
|
|
},
|
|
"engines": {
|
|
"node": "> 0.8"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"index.html",
|
|
"bower.json",
|
|
"test/demo.js",
|
|
"index.d.ts"
|
|
],
|
|
"homepage": "https://github.com/bahmutov/lazy-ass",
|
|
"keywords": [
|
|
"assertion",
|
|
"assertions",
|
|
"browser",
|
|
"debugging",
|
|
"defensive",
|
|
"lazy",
|
|
"node"
|
|
],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"release": {
|
|
"verifyConditions": [
|
|
{
|
|
"path": "@semantic-release/condition-travis"
|
|
},
|
|
{
|
|
"path": "condition-node-version",
|
|
"node": "4.2.2"
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bahmutov/lazy-ass.git"
|
|
},
|
|
"scripts": {
|
|
"build": "grunt",
|
|
"commit": "git-issues && commit-wizard",
|
|
"coveralls": "cat coverage/PhantomJS*/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
|
|
"demo": "grunt gh-pages",
|
|
"dont-break": "dont-break --timeout 30",
|
|
"issues": "git-issues",
|
|
"mocha": "mocha test/*.spec.js",
|
|
"pkgfiles": "pkgfiles",
|
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
|
|
"size": "tarball=\"$(npm pack .)\"; wc -c \"${tarball}\"; tar tvf \"${tarball}\"; rm \"${tarball}\";",
|
|
"test": "grunt test",
|
|
"watch": "grunt watch"
|
|
},
|
|
"types": "index.d.ts"
|
|
} |