-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathindex.js
29 lines (26 loc) · 878 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* eslint-disable react/jsx-filename-extension */
import '@babel/polyfill';
import React from 'react';
import MockAdapter from 'axios-mock-adapter';
import { render, waitForElement } from 'react-testing-library';
import useAxios, { axios } from '../src/index';
it('should be a function', () => {
expect(useAxios).toEqual(expect.any(Function));
});
// Known issue: https://github.com/kentcdodds/react-testing-library/issues/281
it('use custom instance', async () => {
const mock = new MockAdapter(axios);
mock.onGet('/test').reply(200, {
foo: 'bar',
});
function App() {
const { response } = useAxios({
axios: axios.create({}),
url: '/test',
trigger: '', // Auto trigger once
});
return <div>{((response || {}).data || {}).foo}</div>;
}
const { getByText } = render(<App />);
await waitForElement(() => getByText(/bar/));
});