style: format with prettier

This commit is contained in:
Carlos
2024-08-13 20:05:53 -04:00
parent 7422ddf34b
commit 0e72a35ba7
13 changed files with 2058 additions and 98 deletions

View File

@@ -7,12 +7,12 @@ describe('printCommandSummary', () => {
it('should print the command summary without errors', () => {
// Mock console.log to capture output
const logSpy = jest.spyOn(console, 'log').mockImplementation(() => {});
printCommandSummary();
// Check that console.log was called
expect(logSpy).toHaveBeenCalled();
// Restore console.log
logSpy.mockRestore();
});