我正在使用Redux工具箱查询从React组件进行API调用。现在功能运行得很好,但我正在努力使用react-testing库为组件编写单元测试用例
== Redux Toolkit Query API ==
const AssetInstancesAPI = createApi({
baseQuery: fetchBaseQuery({
baseUrl: 'http://localhost:3003',
headers: genHeaders(token)
}),
reducerPath: 'AssetInstances',
tagTypes: [`table-contents`],
endpoints: (build) => ({
getAssetsTableData: build.query<any, void>({
query: (body) => ({
url: '/assets/summary',
method: 'get',
data: body
}),
providesTags: [`table-contents`]
})
})
});
export const { useGetAssetsTableDataQuery } = AssetInstancesAPI;
个字符
1条答案
按热度按时间l3zydbqr1#
你需要模拟你的API调用。使用像https://mswjs.io/这样的库。然后你会有这样的东西:
字符串