(sessionsDir: string, workspaceId: string)
| 45 | } |
| 46 | |
| 47 | function getDevtoolsLogPath(sessionsDir: string, workspaceId: string): string { |
| 48 | return path.join(sessionsDir, workspaceId, "devtools.jsonl"); |
| 49 | } |
| 50 | |
| 51 | async function pathExists(filePath: string): Promise<boolean> { |
| 52 | try { |
no outgoing calls
no test coverage detected