// fileImTestingAgainst.js
import theFuncIWantToMock from 'someModule'
export default function whatever () {
// logging for debugging purposes
console.log(theFuncIWantToMock)
const myVar = theFuncIWantToMock(/* args */)
// ... more stuff
}
// myTest.js
jest.mock('someModule', () => ({
theFuncIWantToMock: jest.fn()
}))
import theFuncIWantToMock from 'someModule'
import whatever from 'fileImTestingAgainst'
test('do my test', () => {
whatever()
expect(theFuncIWantToMock).toHaveBeenCalledWith('cat')
})
我希望我的console.log
将theFuncIWantToMock
显示为mock
个实例,但我会显示最初定义的功能。根据Jest文档,这就是我应该如何模拟模块。但这似乎不起作用。
答案 0 :(得分:1)
import theFuncIWantToMock from 'someModule'
您正在导入默认模块
这意味着您需要模拟默认值。尝试将其更改为此。
jest.mock('someModule', () => jest.fn());
另一种模拟文件的方法是在模块所在的__mocks__
下创建文件。
内部__mocks__/someModule.js
const mockFunc = jest.fn();
export default mockFunc;
在测试功能中
jest.mock('someModule');
如果这些不是node_modules,也尝试使用相对路径。 https://facebook.github.io/jest/docs/en/manual-mocks.html#mocking-node-modules