作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为使用 node-forge 的代码编写测试。出于某种原因,当我调用 forge.md.sha256.create();
时测试挂起:
import forge from "node-forge";
const privateKey = "foo";
const storagePin = "bar";
const md = forge.md.sha256.create();
md.update(privateKey + storagePin);
const metadataKey = md.digest().toHex();
作为一种解决方法,我试图模拟该方法的实现,以便它只返回一个硬编码的字符串:
import forge from "node-forge";
jest.mock("node-forge");
forge.mockImplementation(() => {
return {
md: {
sha256: {
create: () => {
return {
update: () => {},
digest: () => {
toHex: () => "foobar";
}
};
}
}
}
};
});
// tests
但是,我的测试总是失败:
TypeError: _nodeForge2.default.mockImplementation is not a function
at Object.<anonymous> (src/redux/epics/authentication-epic.test.js:20:27)
at new Promise (<anonymous>)
at Promise.resolve.then.el (node_modules/p-map/index.js:46:16)
at processTicksAndRejections (internal/process/next_tick.js:81:5)
奇怪的是,当我尝试模拟我自己的文件时,这种策略非常有效。
模拟第 3 方库的正确方法是什么?
最佳答案
你试过吗?关于此的更多信息 here .
jest.mock('node-forge', () => ({
md: {
sha256: {
create: () => ({
update: () => {},
digest: () => ({
toHex: () => 'foobar'
}),
}),
},
},
}));
关于javascript - Jest : How to mock a library in node_modules?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55524547/
我是一名优秀的程序员,十分优秀!