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.
2.8 KiB
2.8 KiB
3.3.0 2022-06-24
JSONVisitor.onObjectBeginandJSONVisitor.onArrayBegincan now returnfalseto instruct the visitor that no children should be visited.
3.2.0 2022-08-30
- update the version of the bundled Javascript files to
es2020. - include all
const enumvalues in the bundled JavaScript files (ScanError,SyntaxKind,ParseErrorCode).
3.1.0 2022-07-07
- added new API
FormattingOptions.keepLines: It leaves the initial line positions in the formatting.
3.0.0 2020-11-13
- fixed API spec for
parseTree. Can returnundefinefor empty input. - added new API
FormattingOptions.insertFinalNewline.
2.3.0 2020-07-03
- new API
ModificationOptions.isArrayInsertion: IfJSONPathrefers to an index of an array andisArrayInsertionistrue, thenmodifywill insert a new item at that location instead of overwriting its contents. ModificationOptions.formattingOptionsis now optional. If not set, newly inserted content will not be formatted.
2.2.0 2019-10-25
- added
ParseOptions.allowEmptyContent. Default isfalse. - new API
getNodeType: Returns the type of a value returned by parse. parse: Fix issue with empty property name
2.1.0 2019-03-29
JSONScannerandJSONVisitorreturn lineNumber / character.
2.0.0 2018-04-12
- renamed
Node.columnOffsettoNode.colonOffset - new API
getNodePath: Gets the JSON path of the given JSON DOM node - new API
findNodeAtOffset: Finds the most inner node at the given offset. IfincludeRightBoundis set, also finds nodes that end at the given offset.
1.0.3 2018-03-07
- provide ems modules
1.0.2 2018-03-05
- added the
visit.onCommentAPI, reported when comments are allowed. - added the
ParseErrorCode.InvalidCommentTokenenum value, reported when comments are disallowed.
1.0.1
- added the
formatAPI: computes edits to format a JSON document. - added the
modifyAPI: computes edits to insert, remove or replace a property or value in a JSON document. - added the
allyEditsAPI: applies edits to a document
1.0.0
- remove nls dependency (remove
getParseErrorMessage)
0.4.2 / 2017-05-05
- added
ParseError.offset&ParseError.length
0.4.1 / 2017-04-02
- added
ParseOptions.allowTrailingComma
0.4.0 / 2017-02-23
- fix for
getLocation. NowgetLocationinside an object will always return a property from inside that property. Can be empty string if the object has no properties or if the offset is before a actual property{ "a": { | }} will return location ['a', ' ']
0.3.0 / 2017-01-17
- Updating to typescript 2.0