(obj: unknown)
| 60 | |
| 61 | /** Drop a `codegraph.json` at the workspace root. */ |
| 62 | const writeConfig = (obj: unknown) => |
| 63 | fs.writeFileSync(path.join(ws, 'codegraph.json'), |
| 64 | typeof obj === 'string' ? obj : JSON.stringify(obj)); |
| 65 | |
| 66 | describe('default: .gitignore is respected (#970, #976)', () => { |
| 67 | it('does NOT index embedded repos inside a gitignored dir without opt-in', () => { |
no test coverage detected