(filePath: string, content = 'data')
| 19 | } |
| 20 | |
| 21 | function writeFile(filePath: string, content = 'data'): void { |
| 22 | fs.mkdirSync(path.dirname(filePath), { recursive: true }) |
| 23 | fs.writeFileSync(filePath, content, 'utf-8') |
| 24 | } |
| 25 | |
| 26 | test('createPendingDataDirMigration records a restart-time migration without mutating config', () => { |
| 27 | const pending = createPendingDataDirMigration({ |
no outgoing calls
no test coverage detected