Skip to content

Instantly share code, notes, and snippets.

@ryan-mars
Created February 19, 2021 02:15
Show Gist options
  • Save ryan-mars/6ff4ee799ae810928eb1ae1d20896007 to your computer and use it in GitHub Desktop.
Save ryan-mars/6ff4ee799ae810928eb1ae1d20896007 to your computer and use it in GitHub Desktop.
Jest Mocking Snippets
import { X } from 'path/to/module'
jest.mock('path/to/module', () => ({
X: jest.fn()
}));
test(() => {
expect(X).toHaveBeenCalled()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment