我想模拟“路径”模块中的resolve方法。
我在一种方法中使用它,我想模拟path.resolve(filepath)
的响应,以便可以基于此编写一些unitTests。
答案 0 :(得分:2)
您可以jest.spyOn(object, methodName)模拟path.resolve
方法。
例如
main.ts
:
import path from 'path';
export function main(filepath) {
return path.resolve(filepath);
}
main.test.ts
:
import { main } from './main';
import path from 'path';
describe('61419093', () => {
it('should pass', () => {
const resolveSpy = jest.spyOn(path, 'resolve').mockReturnValueOnce('/fakepath');
const actual = main('/root/avatar.jpg');
expect(actual).toBe('/fakepath');
expect(resolveSpy).toBeCalledWith('/root/avatar.jpg');
resolveSpy.mockRestore();
});
});
具有100%覆盖率的单元测试结果:
PASS stackoverflow/61419093/main.test.ts (12.631s)
61419093
✓ should pass (4ms)
----------|---------|----------|---------|---------|-------------------
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
----------|---------|----------|---------|---------|-------------------
All files | 100 | 100 | 100 | 100 |
main.ts | 100 | 100 | 100 | 100 |
----------|---------|----------|---------|---------|-------------------
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 14.426s