Reduce noisy logging for missing .geminiignore file. (#793)

This commit is contained in:
DeWitt Clinton
2025-06-06 07:47:43 -07:00
committed by GitHub
parent f1178532a0
commit a769fae655
2 changed files with 1 additions and 6 deletions
@@ -128,9 +128,7 @@ describe('loadGeminiIgnorePatterns', () => {
const patterns = loadGeminiIgnorePatterns(tempDir);
expect(patterns).toEqual([]);
expect(consoleLogSpy).toHaveBeenCalledWith(
'[INFO] No .geminiignore file found. Proceeding without custom ignore patterns.',
);
expect(consoleLogSpy).not.toHaveBeenCalled();
expect(mockedFsReadFileSync).toHaveBeenCalledWith(ignoreFilePath, 'utf-8');
});