(obj, methodName)
| 466 | * @returns a Jasmine spy that can be chained with all spy methods |
| 467 | */ |
| 468 | var spyOn = function(obj, methodName) { |
| 469 | return jasmine.getEnv().currentSpec.spyOn(obj, methodName); |
| 470 | }; |
| 471 | if (isCommonJS){exports.spyOn = spyOn;} |
| 472 | |
| 473 | /** |
no outgoing calls
no test coverage detected
searching dependent graphs…