(filename: string, content: string)
| 39 | |
| 40 | // Helper function to create test certificate files |
| 41 | function createTestCertFile(filename: string, content: string): string { |
| 42 | const filePath = path.join(tempDir, filename); |
| 43 | fs.writeFileSync(filePath, content, "utf8"); |
| 44 | return filePath; |
| 45 | } |
| 46 | |
| 47 | test("getAgentOptions returns basic configuration with default values", async () => { |
| 48 | const options = await getAgentOptions(); |
no outgoing calls
no test coverage detected