(root, filePath, content)
| 11 | } |
| 12 | |
| 13 | function write(root, filePath, content) { |
| 14 | const fullPath = join(root, filePath); |
| 15 | mkdirSync(dirname(fullPath), { recursive: true }); |
| 16 | writeFileSync(fullPath, content); |
| 17 | } |
| 18 | |
| 19 | test("removes only the local legacy migration artifacts", async () => { |
| 20 | const root = makeFixture(); |
no outgoing calls
no test coverage detected