Running Cypress
Let's explore Cypress by running a test.
Opening Cypress
Let’s start with a real Cypress test:
context("Signup flow", () => {
it("The happy path should work", () => {
cy.visit("/");
// ... we are going to write the rest of the test
});
});
Let’s have a closer look at the code line by line:
-
context("...
is ...