(category: string, filename: string)
| 17 | * Load a fixture file as a string |
| 18 | */ |
| 19 | export async function loadFixture(category: string, filename: string): Promise<string> { |
| 20 | const filePath = getFixturePath(category, filename) |
| 21 | return fs.readFile(filePath, 'utf-8') |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Load a Marimo format fixture (.marimo.py) |
no test coverage detected