Files
compiler-explorer/docs/UsingCypress.md
Matt Godbolt 54c942ba76 Replace nopt with commander.js for argument parsing (#7673)
- Replace nopt with commander.js for better command-line argument parsing
- Add automatic help generation with detailed descriptions
- Maintain backward compatibility with existing arguments
- Remove unused nopt dependency from package.json

🤖 Generated with [Claude Code](https://claude.ai/code)

---------

Co-authored-by: Claude <noreply@anthropic.com>
2025-05-12 12:49:28 -05:00

11 lines
360 B
Markdown

### Using Cypress
Our frontend testing is done with cypress.
To run the tests locally:
- start a server with `npm run dev -- --language c++ --no-local` - this configuration ensures your setup is clean of any
local properties.
- in another terminal run `npx cypress open`, then choose "end to end" and then you should be able to run tests
interactively.