Skip to content

Instantly share code, notes, and snippets.

@russel-yang
Created July 15, 2020 04:55
Show Gist options
  • Select an option

  • Save russel-yang/8d5eeaeba4adcacf66f4dba662604f6b to your computer and use it in GitHub Desktop.

Select an option

Save russel-yang/8d5eeaeba4adcacf66f4dba662604f6b to your computer and use it in GitHub Desktop.
jest.mock('node-fetch', () => ({
__esModule: true,
default: () => ({
json: () => ({
token: 'my-token',
}),
}),
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment