(count: number)
| 48 | }; |
| 49 | |
| 50 | function generateLogs(count: number): WorkspaceAgentLog[] { |
| 51 | return Array.from({ length: count }, (_, i) => ({ |
| 52 | id: i, |
| 53 | output: `log line ${i}`, |
| 54 | created_at: new Date().toISOString(), |
| 55 | level: "info", |
| 56 | source_id: "", |
| 57 | })); |
| 58 | } |
no outgoing calls
no test coverage detected