Opening Cypress
Let's start with a real Cypress test:
File: cypress/integration/examples/signup/signup-1.e2e.spec.js
/// <reference types="Cypress" />
context("Signup flow", () => {
it("The happy path should work", () => {
cy.visit("/");
// ... we are going to write the rest of the test
});
});
A closer look line by line:
/// <reference types="Cypress" />
allows us to leverage VS Code Intellisense for the autocompletioncontext("...
is the same ofdescribe("...
, it helps to group some related testsit("...
is the same oftest("...
, it contains the test instructionsabout the name of the file (
signup-1.e2e.spec.js
):xxx.spec.js
(orxxx.test.js
, it's the same) helps identifying in a while the purpose of the testxxx.e2e.xxx
helps identifying the type of the test, it allows you to run only some kind of tests with a single command (ex.npx cypress run --spec "cypress/integration/**/*.e2e.*"
)
cy.visit("/");
is the first line of the test itself, it visits the home page of Conduit
How could Cypress know which is the URL of the whole site? Take a look at Cypress config file
File: cypress.json
{
"baseUrl": "http://localhost:4100",
"projectId": "jdiekj"
}
the baseUrl
property tells Cypress the domain the site is available. This property can be overwritten through the command line and allows the Cypress tests to load faster.
Cypress open
In order to see the test running, we must now open Cypress. Run $ npm run cy:open
in your terminal and the list of Cypress tests comes up. Click on the examples/signup/signup-1.e2e.spec.js
If Cypress prompts you with an alert like the following one, it's because you have not the Conduit website running
Launch npm run realworld:start
in the terminal and everything is going to work. In case of troubles take a look at the Conduit chapter.
Now you can see the page launched by the test
The Test Runner
On the left you can see the Test Runner, it's one of the greatest features of Cypress. It allows you to analyze what's happening in the front-end application.
Being able to read what's happening in the front-end app is amazing because you have most of the needed feedback while developing/debugging/testing. You know all the details about the AJAX calls the front-end is doing, you know if some errors happened in the front-end code, you know what Cypress is doing, you know the result of the assertions...
We are going to deepen some of the Test Runner capabilities but we can find everything about it on the official Cypress Documentation.
Author: Stefano Magni