我有一个文件lib.ts
:
export const getValue() { return 'original value'; }
export const callGetValue() { return getValue(); }
还有一个测试文件lib.spec.ts
:
import * as lib from './lib';
// ...
it('works', () => {
jest.spyOn(lib, 'getValue').mockImplementation( () => 'new value');
expect(lib.callGetValue()).toBe('new value'); // it's not!
});
// ...
我想模拟getValue()
,并使其返回'new value'
。不是。为什么?!