(filePath: string)
| 88 | |
| 89 | // Helper function to read file content |
| 90 | async function readFileContent(filePath: string): Promise<any> { |
| 91 | const readContent = await fs.readFile(filePath, "utf-8") |
| 92 | return JSON.parse(readContent) |
| 93 | } |
| 94 | |
| 95 | // Helper function to check if a file exists |
| 96 | async function fileExists(filePath: string): Promise<boolean> { |
no test coverage detected