1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 13:52:46 +02:00

docs(angular): add testing requests content (#6926)

This commit is contained in:
J. Degand
2024-09-01 00:32:15 -04:00
committed by GitHub
parent ea99772fa5
commit f8a83c3c81

View File

@@ -1 +1,9 @@
# Testing Requests
# Testing Requests
As for any external dependency, you must mock the HTTP backend so your tests can simulate interaction with a remote server. The `@angular/common/http/testing` library provides tools to capture requests made by the application, make assertions about them, and mock the responses to emulate your backend's behavior.
Visit the following resources to learn more:
- [@official@Angular Official Docs - Testing Requests](https://angular.dev/guide/http/testing)
- [@video@Import Http Client Testing Module and make Test call with the HttpClient](https://www.youtube.com/watch?v=Sgy_RRXC9As)
- [@video@HTTP | Angular Unit Testing Made Easy: Comprehensive Guide to HTTP Testing](https://www.youtube.com/watch?v=7rlwryYhGzs)