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.
49 lines
2.2 KiB
Markdown
49 lines
2.2 KiB
Markdown
## @cypress/xvfb
|
|
|
|
> easily start and stop an X Virtual Frame Buffer from your node apps.
|
|
|
|
[](https://circleci.com/gh/cypress-io/xvfb/tree/master)
|
|
[](https://travis-ci.org/cypress-io/xvfb)
|
|
[](https://github.com/semantic-release/semantic-release) [![renovate-app badge][renovate-badge]][renovate-app]
|
|
|
|
### Usage
|
|
|
|
```javascript
|
|
var Xvfb = require('xvfb');
|
|
var options = {}; // optional
|
|
var xvfb = new Xvfb(options);
|
|
xvfb.start(function(err, xvfbProcess) {
|
|
// code that uses the virtual frame buffer here
|
|
xvfb.stop(function(err) {
|
|
// the Xvfb is stopped
|
|
});
|
|
});
|
|
```
|
|
|
|
The Xvfb constructor takes four options:
|
|
|
|
* <code>displayNum</code> - the X display to use, defaults to the lowest unused display number >= 99 if <code>reuse</code> is false or 99 if <code>reuse</code> is true.
|
|
* <code>reuse</code> - whether to reuse an existing Xvfb instance if it already exists on the X display referenced by displayNum.
|
|
* <code>timeout</code> - number of milliseconds to wait when starting Xvfb before assuming it failed to start, defaults to 2000.
|
|
* <code>silent</code> - don't pipe Xvfb stderr to the process's stderr.
|
|
* <code>xvfb_args</code> - Extra arguments to pass to `Xvfb`.
|
|
* <code>onStderrData</code> - Function to receive `stderr` output
|
|
|
|
### Debugging
|
|
|
|
Run with `DEBUG=xvfb` environment variable to see debug messages. If you want
|
|
to see log messages from the Xvfb process itself, use `DEBUG=xvfb,xvfb-process`.
|
|
|
|
### Thanks to
|
|
|
|
Forked from [node-xvfb](https://github.com/Rob--W/node-xvfb)
|
|
|
|
* [kesla](https://github.com/kesla) for https://github.com/kesla/node-headless
|
|
* [leonid-shevtsov](https://github.com/leonid-shevtsov) for https://github.com/leonid-shevtsov/headless
|
|
* [paulbaumgart](https://github.com/paulbaumgart) for creating the initial version of this package.
|
|
|
|
both of which served as inspiration for this package.
|
|
|
|
[renovate-badge]: https://img.shields.io/badge/renovate-app-blue.svg
|
|
[renovate-app]: https://renovateapp.com/
|