(path: string, content: string)
| 45 | await writeFile(resolve(tmpDir, path), JSON.stringify(data, null, 2)); |
| 46 | } |
| 47 | async function writeFileAt(path: string, content: string): Promise<void> { |
| 48 | await mkdir(resolve(tmpDir, path, '..'), { recursive: true }); |
| 49 | await writeFile(resolve(tmpDir, path), content); |
| 50 | } |
| 51 | |
| 52 | test('pnpm-workspace.yaml catalog change flags consuming packages', async () => { |
| 53 | // --- base state on main --- |
no outgoing calls
no test coverage detected
searching dependent graphs…