Jasmine Spy to return different values based on argument

And*_*897 6 javascript spy jasmine

I am spying a JS method. I want to return different things based on actual argument to the method. I tried callFake and tried to access arguments using arguments[0] but it says arguments[0] is undefined. Here is the code -

 spyOn(testService, 'testParam').and.callFake(function() {
     var rValue = {};
     if(arguments[0].indexOf("foo") !== -1){
         return rValue;
     }
     else{
         return {1};
     }
 })        
Run Code Online (Sandbox Code Playgroud)

This is suggested here - Any way to modify Jasmine spies based on arguments?

But it does not work for me.

Win*_*ier 6

使用参数应该可以正常工作。另外,还可以在测试中粘贴整个对象,尽管这不是问题的根源。

这是我的用法。在这里看到它的作用

var testObj = {
  'sample': "This is a sample string",
  'methodUnderTest': function(param) {
    console.log(param);
    return param;
  }
};

testObj.methodUnderTest("You'll notice this string on console");

describe('dummy Test Suite', function() {
  it('test param passed in', function() {
    spyOn(testObj, 'methodUnderTest').and.callFake(function() {
      var param = arguments[0];
      if (param === 5) {
        return "five";
      }
      return param;
    });
    var val = testObj.methodUnderTest(5);
    expect(val).toEqual('five');
    var message = "This string is not printed on console";
    val = testObj.methodUnderTest(message);
    expect(val).toEqual(message);
  });
});
Run Code Online (Sandbox Code Playgroud)