Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 1.61 KB

README.md

File metadata and controls

31 lines (19 loc) · 1.61 KB

Browser testing

Our browser integration tests are based on Cypress. We are using End-to-End (E2E) tests. To get an overview of Cypress, we recommend going through their very extensive and well-written guides, especially Your First Test with Cypress and Introduction to Cypress.

Running the tests

The tests are automatically run by the CI environment.

To run them locally, you can use the Cypress test runner. Make sure you have the correct dependencies installed by running: yarn cypress verify. Check the Cypress docs for details on which dependencies you need for which platform.

For the tests, we use a mock analysis runner instead of a real one. This not only makes the tests significantly faster but also allows us to control the analysis results and test accordingly. Start the mock analysis runner by running:

yarn mock-analysis-runner

To open the test runner, run:

yarn cypress open --e2e --browser electron

Interacting with the database during tests

Sometimes you will need to manipulate the database during a test. For that, we have a small utility script in scripts/db-test-util.ts. You can use the existing commands or add new ones.

Here's how you can run a command during a test:

cy.exec('yarn db-test-util delete-qd');