mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
- 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>
11 lines
360 B
Markdown
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.
|