E2E Testing with Cypress

Learn to write and configure signup E2E tests.

We'll cover the following...

Now that our Signup feature is complete and it’s redirecting users to our dashboard, we’re going to write the E2E tests. Unlike the unit tests, which are tested entirely within Angular with no API necessary, the E2E tests will require that our API and test database are up and running. These tests will open a browser and interact with the application, as we have been doing up to this point to test functionality. Now, it’s time to automate that.

If this is your first time working with Cypress, it’s advised that you check the lesson ...