Skip to content

Instantly share code, notes, and snippets.

@enzzoperez
Created April 18, 2022 15:47
Show Gist options
  • Save enzzoperez/f1cc1b3da874c33fc9b6e5fb6d752570 to your computer and use it in GitHub Desktop.
Save enzzoperez/f1cc1b3da874c33fc9b6e5fb6d752570 to your computer and use it in GitHub Desktop.
describe('Testing uses cases for async hook', () => {
it('', async () => {
const mock = new MockAdapter(axios);
mock.onGet().reply(200, {data: []});
const {result, waitForNextUpdate} = renderHook(
({url}) => useRemoteData({url}),
{
initialProps: {
url: '',
},
},
);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment