Skip to content

Instantly share code, notes, and snippets.

@ThaddeusJiang
Created December 14, 2021 08:26
Show Gist options
  • Save ThaddeusJiang/23302def855e520a8631a4c23661634b to your computer and use it in GitHub Desktop.
Save ThaddeusJiang/23302def855e520a8631a4c23661634b to your computer and use it in GitHub Desktop.
Jest mock console.log
it('console.log the text "hello"', () => {
console.log = jest.fn();
log('hello');
// The first argument of the first call to the function was 'hello'
expect(console.log).toHaveBeenCalledWith('hello');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment