Skip to content

Instantly share code, notes, and snippets.

@fernandodof
Created February 20, 2021 18:51
Show Gist options
  • Save fernandodof/509a89b6b129acef310614d90d316b4f to your computer and use it in GitHub Desktop.
Save fernandodof/509a89b6b129acef310614d90d316b4f to your computer and use it in GitHub Desktop.
describe('When the average price is called for 7 days', () => {
beforeEach(async () => {
averagePrice = await getPricesLastDays(7);
});
it('Then the correct average should be returned', () => {
expect(averagePrice).toEqual({ average: MOCK_AVERAGE });
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment