(id: string, status: RunRecord['status'])
| 120 | } |
| 121 | |
| 122 | function createRun(id: string, status: RunRecord['status']): RunRecord { |
| 123 | return { |
| 124 | id, |
| 125 | status, |
| 126 | startedAt: 1, |
| 127 | updatedAt: 2, |
| 128 | eventIds: [], |
| 129 | } |
| 130 | } |
no outgoing calls
no test coverage detected