()
| 97 | } |
| 98 | |
| 99 | function makeUserLine(): string { |
| 100 | return JSON.stringify({ |
| 101 | role: "user", |
| 102 | content: "test", |
| 103 | createdAt: "2024-01-01T00:00:00.000Z", |
| 104 | }); |
| 105 | } |
| 106 | |
| 107 | function parseInteger(value: unknown, fieldName: string): number { |
| 108 | if (typeof value === "number") { |
no outgoing calls
no test coverage detected