chore(autofix): apply prettier + eslint fixes via /autofix command

This commit is contained in:
github-actions[bot] 2026-05-10 11:42:11 +00:00
parent 13998b5407
commit d1f31ac4e9

View file

@ -53,14 +53,9 @@ describe('generateAIContextFiles', () => {
try {
// Stats values picked to be unmistakable if they leak through.
const stats = { nodes: 12345, edges: 67890, processes: 99 };
await generateAIContextFiles(
subDir,
subStorage,
'NoStatsProject',
stats,
undefined,
{ noStats: true },
);
await generateAIContextFiles(subDir, subStorage, 'NoStatsProject', stats, undefined, {
noStats: true,
});
for (const f of ['CLAUDE.md', 'AGENTS.md']) {
const content = await fs.readFile(path.join(subDir, f), 'utf-8');