Quick overview of E2E testing in Angular


Note:
This article assumes that you use the angular-cli, and have basic knowledge on how it works.

What is End-to-End testing?

While unit tests helps you find bugs, there are some things that won’t be noticeable at this level. That is where e2e or integration tests comes in, where you automate a user using your application in one or more browsers.

As our applications grow in size, testing the correctness of the  UI (user interface) manually becomes unrealistic and tedious. It also helps you find out if certain parts of the UI, stops working as expected. Continue reading “Quick overview of E2E testing in Angular”