It is not recommended to run tests on your working project, since failed tests can leave behind
empty pipelines, triggers, etc. Set up your
development environment.
You have the option to just run one specific test or all tests at once. There are
several ways to run specific tests.
Copy
# Run everything, headless by default.yarn test# Run everything with a browser.yarn test:h# Run test files that have the word "pipelines" in their names.yarn test pipelines
You can run the frontend tests using the CI/CD Playwright configuration with the following command: