Full Stack Web Development

W01 Angular Unit Testing from the Trenches

04/24/2019

8:00am - 9:15am

Level: Introductory to Intermediate

Justin James

Founder

Let Your Nerd Be Heard

For a number of years now we have been hearing about all of the benefits that automated unit testing provides like increasing our quality, catching errors earlier, ensuring that all developers are testing in the same manner and deploying updates with high confidence that nothing will break. Testing a Web UI though was difficult and fragile which meant that typically we had no automated unit test for our Web UI. This is no longer the case with the latest release of Angular. Unit testing is now a first class citizen in Angular.

Out of the box, the project generated by the Angular CLI has unit testing setup with Karma and Jasmine and includes sample tests. Generating new components, services, and pipes includes the unit test Spec file already wired up. Thus allowing you to focus on writing your unit tests and not on the infrastructure needed to get them running. The barriers to writing unit test have been destroyed.

This talk will walk through getting started unit testing your Angular components, services, and pipes. Along the way I will share the tips and tricks that I hve learned as I have implemented unit testing on my Angular projects at a Fortune 100 company. You will walk away ready to immediately implement unit testing on your Angular project.

You will learn:

  • Understand what is possible to unit test with Angular
  • Understand how to actual create and run Angular unit tests
  • Understand what issues you may encounter as you start creating your own unit tests and how to work around them