(category: string, filename: string)
| 10 | * Get the absolute path to a fixture file |
| 11 | */ |
| 12 | export function getFixturePath(category: string, filename: string): string { |
| 13 | return path.join(FIXTURES_ROOT, category, filename) |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Load a fixture file as a string |
no outgoing calls
no test coverage detected