mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-30 12:01:06 -05:00
e1f58da01c
* fix(deps): update fs-extra to 8.0.1 🌟 * but fs-extra in cli package back to 5.0.0 (Needs Node 4 support) Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Jennifer Shehane <jennifer@cypress.io>
Launcher
This package finds and launches browsers for each operating system.
Installing
The launcher's dependencies can be installed with:
cd packages/launcher
npm install
Developing
The TypeScript source files are in lib folder.
To see browsers detected on your machine, just run:
node index.js
You can supply a list of binaries to test if they're browsers or not. Try running:
node index.js /bin/bash /usr/bin/chromium-browser
Testing
npm run test
Debugging
Uses debug to output debug log messages. To turn on, use
DEBUG=cypress:launcher npm test