| 106 | } |
| 107 | |
| 108 | function jobRow(overrides: Record<string, unknown> = {}) { |
| 109 | return { |
| 110 | id: 'job-log-1', |
| 111 | executionId: 'job-exec-1', |
| 112 | level: 'info', |
| 113 | status: 'success', |
| 114 | trigger: 'schedule', |
| 115 | startedAt: new Date('2026-01-01T00:00:05.000Z'), |
| 116 | endedAt: new Date('2026-01-01T00:00:06.000Z'), |
| 117 | totalDurationMs: 1000, |
| 118 | cost: { total: 0.2 }, |
| 119 | createdAt: new Date('2026-01-01T00:00:05.000Z'), |
| 120 | jobTitle: 'Nightly report', |
| 121 | sortValue: new Date('2026-01-01T00:00:05.000Z'), |
| 122 | ...overrides, |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | function baseParams(overrides: Partial<ListLogsParams> = {}): ListLogsParams { |
| 127 | return { |