Skip to content

Instantly share code, notes, and snippets.

@fernandodof
Last active February 22, 2021 18:37
Show Gist options
  • Save fernandodof/89caf28315764fd862393752adac07ac to your computer and use it in GitHub Desktop.
Save fernandodof/89caf28315764fd862393752adac07ac to your computer and use it in GitHub Desktop.
describe('When the promise is rejected', () => {
beforeEach(async () => {
fetch.mockRejectedValueOnce(new Error("I'm a teapot"));
averagePrice = await getPricesLastDays(7);
});
it('Then the fuction should return null', () => {
expect(averagePrice).toEqual(null);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment