thi*_*iet 5 javascript node.js jestjs axios
我的应用程序有一个文件,它创建一个带有拦截器的 axios 实例,然后 api 使用该实例进行调用。问题是当我尝试为此 api 编写测试时,它失败并出现TypeError: (0 , _axios.default) is not a function错误。
下面是创建 axios 实例的 poc:
const axiosInstance = axios.create({
timeout: 20000,
paramsSerializer(params) {
return qs.stringify(params, { indices: false });
},
});
axiosInstance.interceptors.request.use((config) => {
if (process.env.NODE_ENV === 'development') {
logger.info(`Request sent to ${config.url}`, config.params);
}
return config;
}, (error) => Promise.reject(error));
axiosInstance.interceptors.response.use((response) => {
if (process.env.NODE_ENV === 'development') {
logger.info(`Response from ${response.config.url}`, response.data);
}
return parseBody(response);
}, (error) => parseError(error));
export default axiosInstance;
Run Code Online (Sandbox Code Playgroud)
这是使用 axios 实例的 api
const triviaAPI = {
getQuestions: async (amount) => axiosInstance({
method: 'get',
url: 'https://opentdb.com/api.php',
params: {
amount,
},
}).then((response) => response.results)
.catch((error) => {
throw error;
}),
};
export default triviaAPI;
Run Code Online (Sandbox Code Playgroud)
这是 axios 模拟
import mockAxios from 'jest-mock-axios';
export default {
...mockAxios,
...{
create: jest.fn(() => ({
...mockAxios,
defaults: {
headers: {
common: {},
},
},
interceptors: {
request: {
use: jest.fn(),
},
response: {
use: jest.fn(),
},
},
get: jest.fn(() => Promise.resolve({ data: { total_payout: 100.21 } })),
})),
},
};
Run Code Online (Sandbox Code Playgroud)
最后这是测试用例
describe('triviaAPI', () => {
it('should return a successful response', async () => {
const data = await triviaAPI.getQuestions(10);
console.log(data);
expect(Array.isArray(data)).toBe(true);
});
});
Run Code Online (Sandbox Code Playgroud)
我已经搜索了很多,但还没有找到解决方案。请帮忙!!!
它可能无法工作的原因是因为您正在使用export默认情况下在 Node.js 中尚不支持的功能,但是您可以使用此处引用的实验性 Node.js 功能来启用它,但不建议这样做,因此我建议使用esm
因此,对于您的用例:
包.json:
{
"name": "axios-test",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test": "node -r esm ." //Important
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"esm": "^3.2.25" //Important
}
}
Run Code Online (Sandbox Code Playgroud)
axiosInstance.js:
import axios from "axios" //Important
const axiosInstance = axios.create({
timeout: 20000,
paramsSerializer(params) {
return JSON.stringify(params, { indices: false });
},
});
axiosInstance.interceptors.request.use((config) => {
if (process.env.NODE_ENV === 'development') {
logger.info(`Request sent to ${config.url}`, config.params);
}
return config;
}, (error) => Promise.reject(error));
axiosInstance.interceptors.response.use((response) => {
if (process.env.NODE_ENV === 'development') {
logger.info(`Response from ${response.config.url}`, response.data);
}
return response;
}, (error) => Promise.reject(error));
export default axiosInstance; //Important
Run Code Online (Sandbox Code Playgroud)
main.js:
import axiosInstance from "./axiosInstance.js" //Important
const triviaAPI = {
getQuestions: async (amount) => axiosInstance({
method: 'get',
url: 'https://opentdb.com/api.php',
params: {
amount,
},
}).then((response) => response.results)
.catch((error) => {
throw error;
}),
};
async function main() {
const data = await triviaAPI.getQuestions(10);
console.log(data);
}
main()
Run Code Online (Sandbox Code Playgroud)
注意:我的 axiosInstance.mjs 中的一些代码已更改,因为问题不包括它们是什么,因此我已用以下标记标记了所有相关更改//Important
另外:如果您想查看使用实验功能的示例,请检查此答案的编辑历史记录。
| 归档时间: |
|
| 查看次数: |
2676 次 |
| 最近记录: |