我有一个页面,其中加载了一个下拉组件。这个组件调用一个自定义钩子,它使用反应查询来获取数据以显示在下拉列表中。在初始加载时,此组件处于加载状态并呈现加载图标。当 react-query 成功完成调用时,组件将数据列表呈现到下拉列表中。
const SelectItem = ({ handleSelectChange, selectedItem }) => {
const { data, status } = useGetData(url, 'myQueryKey');
if (status === 'loading') {
return <RenderSkeleton />;
}
if (status === 'error') {
return 'An Error has occured';
}
return (
<>
<Autocomplete
options={data}
getOptionLabel={(option) => `${option.name}`}
value={selectedItem}
onChange={(event, newValue) => {
handleSelectChange(newValue);
}}
data-testid="select-data"
renderInput={(params) => <TextField {...params}" />}
/>
</>
);
};
如何正确测试?即使在实现 msw 来模拟响应数据之后,我的测试也只会呈现 Skeleton 组件。所以我认为它基本上只等待“isLoading”状态。
it('should load A Selectbox data', async () => {
render(
<QueryClientProvider client={queryClient}>
<SelectItem />
</QueryClientProvider>
);
expect(await screen.getByTestId('select-data')).toBeInTheDocument()
});
请注意,我还实现了 msw 模拟服务器和处理程序来模拟它应该返回的数据。顺便说一句,在使用反应查询之前它就像一个魅力,所以我想我正在监督一些事情。
谢谢!