(dir: string)
| 40 | } |
| 41 | |
| 42 | async function readGlobalAt(dir: string): Promise<string> { |
| 43 | try { |
| 44 | return await readFile(resolveGlobalLogPath(dir), 'utf-8'); |
| 45 | } catch { |
| 46 | return ''; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | describe('log — pre-configure noop', () => { |
| 51 | it('silently swallows calls before configure', async () => { |
no test coverage detected