(dir: string)
| 22 | } |
| 23 | |
| 24 | function cleanup(dir: string): void { |
| 25 | try { |
| 26 | rmSync(dir, { recursive: true, force: true, maxRetries: 5, retryDelay: 50 }) |
| 27 | } catch { |
| 28 | // Windows can hold SQLite WAL handles briefly after close; temp cleanup is best-effort. |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | describe('AIChatManager legacy migration', () => { |
| 33 | it('creates ai_chat schema for fresh databases', () => { |