Use Testing Library
Learn how to use the Testing Library to test your web application.
We'll cover the following...
Testing library
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 ...