(rel: string, body: string)
| 28 | let cg: CodeGraph; |
| 29 | |
| 30 | const write = (rel: string, body: string) => { |
| 31 | const p = path.join(dir, rel); |
| 32 | fs.mkdirSync(path.dirname(p), { recursive: true }); |
| 33 | fs.writeFileSync(p, body); |
| 34 | }; |
| 35 | |
| 36 | beforeEach(async () => { |
| 37 | dir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-android-res-')); |
no test coverage detected