atproto user agency toolkit for individuals and groups
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix flaky offer-manager test cleanup with retry and swallowed errors

rmSync can fail with ENOTEMPTY when blockstore files haven't been fully
released after ipfsService.stop(). Add maxRetries + try/catch to match
the pattern used in other test files.

+1 -1
+1 -1
src/replication/offer-manager.test.ts
··· 102 102 await ipfsService.stop(); 103 103 } 104 104 db.close(); 105 - rmSync(tmpDir, { recursive: true, force: true }); 105 + try { rmSync(tmpDir, { recursive: true, force: true, maxRetries: 3, retryDelay: 100 }); } catch {} 106 106 }); 107 107 108 108 // ============================================