by Alyona Pysarenko
by Alyona Pysarenko
Karma is the test runner that makes running tests painless and amazingly fast.
Explaining the Karma Config:
The list of files paths to load
getSpecs() function
Karma start
env KARMA_SPECS=“spec/online-mortgage/online-mortgage-strategy-controller.js” karma start
Success
Failed
Inline mock
The first way is to override the service during the unit test, as an inline mock
Global mock
The second option to override services would be at a global level instead of a unit test level.
to mock out
File: notesApp-mocks.js
In Jasmine, mocks are referred to as spies.
Spies allow us to hook into certain functions, and check whether they:
init() function in controller
The $http service internally uses the $httpBackend to make the actual XHR requests.
The angular-mocks.js file provides a mock $httpBackend service that
Ensure that all requests to the server have actually responded (using flush())
Ensure that all expects set on the $httpBackend were actually called
1. Syntax of private functions in controller
2. Mocking service that returns class with extended prototype