(rel: string, content: string)
| 34 | |
| 35 | tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), 'cg-764-')); |
| 36 | const mk = (rel: string, content: string) => { |
| 37 | const p = path.join(tmpDir, rel); |
| 38 | fs.mkdirSync(path.dirname(p), { recursive: true }); |
| 39 | fs.writeFileSync(p, content); |
| 40 | }; |
| 41 | |
| 42 | for (const app of ['billing', 'admin']) { |
| 43 | mk( |
no test coverage detected