(obj, methodName)
| 478 | * @return {jasmine.Spy} a Jasmine spy that can be chained with all spy methods |
| 479 | */ |
| 480 | var spyOn = function(obj, methodName) { |
| 481 | return jasmine.getEnv().currentSpec.spyOn(obj, methodName); |
| 482 | }; |
| 483 | if (isCommonJS) exports.spyOn = spyOn; |
| 484 | |
| 485 | /** |
no outgoing calls
no test coverage detected
searching dependent graphs…