(filePath: string, contents: string)
| 21 | let previousWorkingDir: string; |
| 22 | |
| 23 | function writeFile(filePath: string, contents: string) { |
| 24 | host.sync.write(normalize(filePath), virtualFs.stringToFileBuffer(contents)); |
| 25 | } |
| 26 | |
| 27 | function runMigration(mode: string, path = './') { |
| 28 | return runner.runSchematic('standalone-migration', {mode, path}, tree); |
no test coverage detected
searching dependent graphs…