(file: string)
| 144 | } |
| 145 | |
| 146 | function readCalls(file: string): string[] { |
| 147 | if (!fs.existsSync(file)) return []; |
| 148 | return fs.readFileSync(file, 'utf-8').trim().split('\n').filter(Boolean); |
| 149 | } |
| 150 | |
| 151 | beforeEach(() => { |
| 152 | tmpHome = fs.mkdtempSync(path.join(os.tmpdir(), 'artifacts-init-')); |
no outgoing calls
no test coverage detected