Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save night-fury-rider/67de93d5e2e4c238f8d315bc8162be50 to your computer and use it in GitHub Desktop.
Save night-fury-rider/67de93d5e2e4c238f8d315bc8162be50 to your computer and use it in GitHub Desktop.
Jest - Partially Mocking Own Methods
jest.mock("$dashboard/ContactService", ()=> {
const actualModule = jest.requireActual("../dashboard/ContactService");
return {
__esModule: true,
...actualModule,
size: 100,
deleteContact: jest.fn()
}
open: jest.fn()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment