fix failing test

This commit is contained in:
geoffsee
2025-03-06 08:29:42 -05:00
committed by Geoff Seemueller
parent 019b6e48c9
commit f5c6f65955

View File

@@ -372,7 +372,7 @@ const a = 1;
const rootIgnore = await markdownGenerator.getRootIgnore(); const rootIgnore = await markdownGenerator.getRootIgnore();
expect(readFileSpy).toHaveBeenCalledWith(rootIgnorePath, 'utf-8'); expect(readFileSpy).toHaveBeenCalledWith(rootIgnorePath, 'utf-8');
expect(writeFileSpy).toHaveBeenCalledWith(rootIgnorePath, ''); expect(writeFileSpy).toHaveBeenCalledWith(rootIgnorePath, 'todo\nprompt.md');
expect(rootIgnore).toBe(''); expect(rootIgnore).toBe('');
// Restore the original implementations // Restore the original implementations