From c570ad495c473e83c87618bdd4c303e214e73667 Mon Sep 17 00:00:00 2001 From: CHAKKA PHANI SIMHA <92540986+c1phani1simha@users.noreply.github.com> Date: Wed, 12 Oct 2022 03:17:39 +0530 Subject: [PATCH] Added content to the readme.md file of 115-testing-angular-apps (#2345) * Added content to the readme.md file of 115-testing-angular-apps [#1847 ](https://github.com/kamranahmedse/developer-roadmap/issues/1847) I contributed to this issue by adding the content to the readme.md file of 115-testing-angular-apps folder. * Update content/roadmaps/104-angular/content/115-testing-angular-apps/readme.md Co-authored-by: Kamran Ahmed --- .../104-angular/content/115-testing-angular-apps/readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/104-angular/content/115-testing-angular-apps/readme.md b/content/roadmaps/104-angular/content/115-testing-angular-apps/readme.md index 27be57f10..5a50e53ca 100644 --- a/content/roadmaps/104-angular/content/115-testing-angular-apps/readme.md +++ b/content/roadmaps/104-angular/content/115-testing-angular-apps/readme.md @@ -1 +1,3 @@ -# Testing angular apps \ No newline at end of file +# Testing Angular Apps + +In any software development process, Testing the application plays a vital role. If Bugs and crashes are not figured out and solved they can defame the development company as well as hurt the clients too. But, Angular’s architecture comes with built-in testability features. As soon as you create a new project with Angular CLI, two essential testing tools are installed.They are: Jasmine and Karma. Jasmine is the testing library which structures individual tests into specifications (“specs”) and suites. And Karma is the test runner, which enables the different browsers to run the tests mentioned by Jasmine and the browsers will finally report the test results back.