(check: { name: string; status: string; message?: string } | null)
| 57 | const SRC = "gstack-code-gstack-c5994d95"; |
| 58 | |
| 59 | function doctor(check: { name: string; status: string; message?: string } | null): string { |
| 60 | return JSON.stringify({ checks: check ? [check] : [] }); |
| 61 | } |
| 62 | |
| 63 | describe("cycleCompleted", () => { |
| 64 | it("returns 'completed' when cycle_freshness is ok", () => { |
no outgoing calls
no test coverage detected