Skip to content

Instantly share code, notes, and snippets.

@AlexPetrov7311
Created February 6, 2023 03:10
Show Gist options
  • Select an option

  • Save AlexPetrov7311/6394e28f43fe243d3a5b719e3a280516 to your computer and use it in GitHub Desktop.

Select an option

Save AlexPetrov7311/6394e28f43fe243d3a5b719e3a280516 to your computer and use it in GitHub Desktop.
Jest Winston
// create winstonLoggerInstance here, e.g. in beforeEach()....
const winstonLoggerMock = jest.spyOn(winstonLoggerInstance, 'log');
serviceInstance.debug('debug sent from test');
expect(winstonLoggerMock).toHaveBeenCalled();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment