(entries, eventType)
| 42 | |
| 43 | describe("parseCodexLog function", () => { |
| 44 | const getEventData = (entries, eventType) => entries.filter(e => e.type === eventType).map(e => e.data || {}); |
| 45 | |
| 46 | it("should parse basic tool call with success", () => { |
| 47 | const logContent = `tool github.list_pull_requests({"state":"open"}) |
no outgoing calls
no test coverage detected