From d1f31ac4e9c8196cc3ed7c19f29d6fc8ca9ba193 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 11:42:11 +0000 Subject: [PATCH] chore(autofix): apply prettier + eslint fixes via /autofix command --- gitnexus/test/unit/ai-context.test.ts | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/gitnexus/test/unit/ai-context.test.ts b/gitnexus/test/unit/ai-context.test.ts index cd9fb0a7c..d414655d4 100644 --- a/gitnexus/test/unit/ai-context.test.ts +++ b/gitnexus/test/unit/ai-context.test.ts @@ -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');