Skip to content

Instantly share code, notes, and snippets.

@fernandodof
Last active February 22, 2021 18:38
Show Gist options
  • Save fernandodof/f46dd7beaf1dc4b16e8e0e88f4e25676 to your computer and use it in GitHub Desktop.
Save fernandodof/f46dd7beaf1dc4b16e8e0e88f4e25676 to your computer and use it in GitHub Desktop.
const MOCK_PRICES = [50, 47, 53, 50, 49, 51, 52];
global.fetch = jest.fn(() => Promise.resolve({
json: () => Promise.resolve(MOCK_PRICES)
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment