Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
CHAKKA PHANI SIMHA c570ad495c
Added content to the readme.md file of 115-testing-angular-apps (#2345)
2 years ago
..
100-testing-pipes.md Added content in Angular Roadmap (#2184) 2 years ago
101-testing-services.md Added content in Angular Roadmap (#2184) 2 years ago
102-testing-component-bindings.md Added content in Angular Roadmap (#2184) 2 years ago
103-testing-directives.md Added content in Angular Roadmap (#2184) 2 years ago
104-testing-component-templates.md Added content in Angular Roadmap (#2184) 2 years ago
readme.md Added content to the readme.md file of 115-testing-angular-apps (#2345) 2 years ago

readme.md

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.