()
| 1 | import { jest } from '@jest/globals' |
| 2 | |
| 3 | export function coreMock() { |
| 4 | return { |
| 5 | info: jest.fn(), |
| 6 | warn: jest.fn(), |
| 7 | error: jest.fn(console.error), |
| 8 | setOutput: jest.fn(), |
| 9 | } |
| 10 | } |
| 11 | |
| 12 | export function octokitMock({ requestMock, listForRepoMock } = {}) { |
| 13 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected