(
limit?: string | number,
options?: { rootDir?: string },
)
| 78 | } |
| 79 | |
| 80 | export async function getAutonomyRunsText( |
| 81 | limit?: string | number, |
| 82 | options?: { rootDir?: string }, |
| 83 | ): Promise<string> { |
| 84 | return formatAutonomyRunsList( |
| 85 | await listAutonomyRuns(options?.rootDir), |
| 86 | parseAutonomyLimit(limit), |
| 87 | ) |
| 88 | } |
| 89 | |
| 90 | export async function autonomyRunsHandler( |
| 91 | limit?: string | number, |
no test coverage detected