style: format with prettier
This commit is contained in:
@@ -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();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user