MCPcopy Index your code
hub / github.com/continuedev/continue / createTestCertFile

Function createTestCertFile

packages/fetch/src/getAgentOptions.test.ts:41–45  ·  view source on GitHub ↗
(filename: string, content: string)

Source from the content-addressed store, hash-verified

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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected