Vue.Js与开玩笑错误axios竞争

时间:2018-02-25 15:22:47

标签: javascript testing vue.js axios jest

我正在为使用axios的组件编写测试。 我得到了:

TypeError: Cannot read property 'get' of undefined

后  yarn test。 我试图将axios导入我的* spec.js文件,但它不起作用。 我该怎么办才能通过测试?

1 个答案:

答案 0 :(得分:0)

您可以在axios文件中模拟*spec.js

jest.mock('axios', () => ({
    get: () => {},
}));

describe('Test.spec.js', () => {
    ...
});