(filePath: string)
| 27 | |
| 28 | /** Reads the UTF8 content of the specified file. Normalizes the path and ensures that */ |
| 29 | export function readFileContent(filePath: string): string { |
| 30 | return readFileSync(filePath, 'utf8'); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Creates a test app schematic tree that will be copied over to a real filesystem location. |
no outgoing calls
no test coverage detected