作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于我正在实现的测试用例,我需要模拟 process.cwd()
功能。在测试用例中,我按如下方式实现了它:
process.cwd = jest.fn(() => '/base/dir')
process.cwd()
在测试用例中调用它按预期工作。在我正在测试的模块中,它返回原始值。我究竟做错了什么?
最佳答案
process
Jest
中的对象test 不是真实的,但它在测试运行期间也是一致的,所以如果您的代码需要 process
直接然后你仍然可以模拟 process.cwd
之类的东西:
代码.js
const process = require('process');
export const func = () => process.cwd();
const process = require('process');
import { func } from './code';
test('func', () => {
const spy = jest.spyOn(process, 'cwd');
spy.mockReturnValue('mocked value');
expect(func()).toBe('mocked value'); // Success!
});
process
像这样的模块:
import { func } from './code';
jest.mock('process', () => ({
cwd: () => 'mocked value'
}));
test('func', () => {
expect(func()).toBe('mocked value'); // Success!
});
process.cwd
并让模拟影响其他核心 Node.js 模块行为,例如
path.resolve
)。
关于mocking - 如何用 Jest 模拟 process.cwd() 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55906920/
我是一名优秀的程序员,十分优秀!