(replyParameters)
| 11261 | /** |
| 11262 | * Allow one to define a reply for a set amount of matching requests. |
| 11263 | */ |
| 11264 | times(repeatTimes) { |
| 11265 | if (typeof repeatTimes !== "number" || !Number.isInteger(repeatTimes) || repeatTimes <= 0) { |
| 11266 | throw new InvalidArgumentError("repeatTimes must be a valid integer > 0"); |
| 11267 | } |
| 11268 | this[kMockDispatch].times = repeatTimes; |
| 11269 | return this; |
| 11270 | } |
| 11271 | }; |
| 11272 | var MockInterceptor = class { |
| 11273 | constructor(opts, mockDispatches) { |
no outgoing calls
no test coverage detected