(...params: any[])
| 13 | context['jasmine'] = context['jasmine'] || {}; |
| 14 | context['jasmine'].createSpy = function (spyName: string) { |
| 15 | let spy: any = function (...params: any[]) { |
| 16 | spy.countCall++; |
| 17 | spy.callArgs = params; |
| 18 | }; |
| 19 | |
| 20 | spy.countCall = 0; |
| 21 |
no outgoing calls
no test coverage detected