Use Testing Library

Learn how to use the Testing Library to test your web application.

Testing library

The more your tests resemble the way your software is used, the more confidence they can give you.

Testing Library provides a way to write your tests so that they represent how the users actually use the web application. Let’s look at an example we currently have in the services/web/cypress/integration/spec.js file:

it("has the correct <h1>", () => {
  cy.contains("h1", "Great success!");
});

This test looks for a “heading 1” element and validates that its content is “Great success!”. From a developer’s ...