How to Mock location.back() Method Call in Jest for Angular Component Testing?
I’m working on testing an Angular component, specifically the handleConformData
method in the ManagePaymentsComponent
, using Jest. This method is responsible for setting up confirmation data based on certain conditions. I want to ensure comprehensive test coverage for this method, covering various scenarios including when certain conditions are met or not. I have covered most of the test case but there is one which is not covered. The test coverage when the account
value is null
or undefined
is not covered as shown below.