(responses)
| 320 | }); |
| 321 | |
| 322 | function queueResponses(responses) { |
| 323 | responses.forEach(response => { |
| 324 | mockGithub.graphql.mockResolvedValueOnce(response); |
| 325 | }); |
| 326 | } |
| 327 | |
| 328 | function getOutput(name) { |
| 329 | const call = mockCore.setOutput.mock.calls.find(([key]) => key === name); |
no outgoing calls
no test coverage detected