resShouldAlwaysBeIgnored(funcName)
A variant of 'shouldBeCalledWith' that defines the parameters being passed into a given mocked function should never be tested.
I was hesitant to add this functionality as it can easily be abused. That being said, there are some valid use cases but you should always think twice before using this function as you are essentially saying that you do not care about testing this mock.
- mockName {String} - This is the key for the mock. It should match the key from 'mockThisFunction'.
- funcName {String} - The name of the function to be mocked. Should match the name from 'mockThisFunction'.
- returns {HttpReqScenario}