From the course: Angular: Testing and Debugging
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
Application overview - Angular Tutorial
From the course: Angular: Testing and Debugging
Application overview
- [Instructor] Testing and debugging is a big part of building Angular apps. The faster you can find the problems the faster you can fix your application and the faster you can get it back up and running. This is the app we'll be working on in this course. It's a simple webpage that shows a list of active users. The input field lets me filter the list by a search string. The UI updates as soon as I start typing a name. So if I search for, say, Davis, I can find those users very quickly. I can also clear my search by clicking the clear button on the right here, which brings back the full list of active users. Let's take a look at the code. This is the HTML template for our user list. At the top here is the input group for our search field and the clear button. Here is our input element. This is a standard HTML input, except for the template reference variable here and the key up binding here. The template reference variable is a quick way for us to access properties on the underlying…