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.
88 lines
2.6 KiB
JavaScript
88 lines
2.6 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "Hub", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _hub.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "NodePath", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _index.default;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "Scope", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _index2.default;
|
|
}
|
|
});
|
|
exports.visitors = exports.default = void 0;
|
|
require("./path/context.js");
|
|
var visitors = require("./visitors.js");
|
|
exports.visitors = visitors;
|
|
var _t = require("@babel/types");
|
|
var cache = require("./cache.js");
|
|
var _traverseNode = require("./traverse-node.js");
|
|
var _index = require("./path/index.js");
|
|
var _index2 = require("./scope/index.js");
|
|
var _hub = require("./hub.js");
|
|
const {
|
|
VISITOR_KEYS,
|
|
removeProperties,
|
|
traverseFast
|
|
} = _t;
|
|
function traverse(parent, opts = {}, scope, state, parentPath, visitSelf) {
|
|
if (!parent) return;
|
|
if (!opts.noScope && !scope) {
|
|
if (parent.type !== "Program" && parent.type !== "File") {
|
|
throw new Error("You must pass a scope and parentPath unless traversing a Program/File. " + `Instead of that you tried to traverse a ${parent.type} node without ` + "passing scope and parentPath.");
|
|
}
|
|
}
|
|
if (!parentPath && visitSelf) {
|
|
throw new Error("visitSelf can only be used when providing a NodePath.");
|
|
}
|
|
if (!VISITOR_KEYS[parent.type]) {
|
|
return;
|
|
}
|
|
visitors.explode(opts);
|
|
(0, _traverseNode.traverseNode)(parent, opts, scope, state, parentPath, undefined, visitSelf);
|
|
}
|
|
var _default = exports.default = traverse;
|
|
traverse.visitors = visitors;
|
|
traverse.verify = visitors.verify;
|
|
traverse.explode = visitors.explode;
|
|
traverse.cheap = function (node, enter) {
|
|
traverseFast(node, enter);
|
|
return;
|
|
};
|
|
traverse.node = function (node, opts, scope, state, path, skipKeys) {
|
|
(0, _traverseNode.traverseNode)(node, opts, scope, state, path, skipKeys);
|
|
};
|
|
traverse.clearNode = function (node, opts) {
|
|
removeProperties(node, opts);
|
|
};
|
|
traverse.removeProperties = function (tree, opts) {
|
|
traverseFast(tree, traverse.clearNode, opts);
|
|
return tree;
|
|
};
|
|
traverse.hasType = function (tree, type, denylistTypes) {
|
|
if (denylistTypes != null && denylistTypes.includes(tree.type)) return false;
|
|
if (tree.type === type) return true;
|
|
return traverseFast(tree, function (node) {
|
|
if (denylistTypes != null && denylistTypes.includes(node.type)) {
|
|
return traverseFast.skip;
|
|
}
|
|
if (node.type === type) {
|
|
return traverseFast.stop;
|
|
}
|
|
});
|
|
};
|
|
traverse.cache = cache;
|
|
|
|
//# sourceMappingURL=index.js.map
|