Published on

Test a Client Address Book: Part 3

1 min read | 175 words
Authors
cypress tree

Photo by Yi Ma on Unsplash

Configure Cypress.json File

In part three of the series, we will learn how to configure the Cypress.json file to make Cypress behave based on our project needs.

The final Cypress.json file will look like the following:

{
  "baseUrl": "http://localhost:3000",
  "integrationFolder": "cypress/e2e",
  "chromeWebSecurity": false,
  "video": false
}

The following video illustrates the entire process:

Part 4: Writing Our First Test

The final source code can be found here