(c: [number, number] | undefined)
| 16 | duration?: number; |
| 17 | }; |
| 18 | function fmtCoord(c: [number, number] | undefined): string { |
| 19 | return c ? `(${c[0]}, ${c[1]})` : ''; |
| 20 | } |
| 21 | const RESULT_SUMMARY: Readonly<Partial<Record<string, string>>> = { |
| 22 | screenshot: 'Captured', |
| 23 | zoom: 'Captured', |
no outgoing calls
no test coverage detected