我刚刚开始学习反应单元测试,整个模拟过程使我感到困惑,我无法理解。
我正在使用axios来获取数据并在此处将其显示在应用程序组件中:
const [ data, setData ] = React.useState(null);
useEffect(
() => {
const url = '/url';
axios.get(url).then((res) => setData(res.data)).catch((err) => {
console.log('error happened' + err);
});
},
[ data ]
);
return (
<div>
{data ? <p data-testid="name">{data.name}</p> : <p data-testid="loading">Loading...</p>}
</div>
);
然后在app.test.js中测试整个加载和命名过程:
afterEach(cleanup);
describe('App', () => {
test('Render app', async () => {
render(<App />);
expect(screen.getByTestId('loading')).toBeInTheDocument();
const name = await waitForElement(() => screen.getByTestId('name'));
expect(name).toBeInTheDocument();
expect(screen.queryByTestId('loading')).toBeNull();
});
});
所有这些测试均成功通过。
我想要实现的是如何通过最简单的方法在app.test.js中对其进行模拟来测试axios本身?
答案 0 :(得分:0)
您可以为您的请求尝试两种方案,该方案失败并成功,并因此具有一些断言。至于涉及axios的测试工作流,使用任何额外的库,这个答案都很好地描述了它:stackoverflow.com/a/51654713/7040146