我在主要打字稿文件中有以下代码:
public readonly funcname = async (param: string): Promise<CustomeType> => {
const constname = somefunction(strparam, jsonparam);
return Promise.resolve({
reqname:constname
});
};
这是在一个名为exportedservice的导出类下编写的。
我在开玩笑地编写以下测试用例:
const outputMock = jest.fn(() => {
return Promise.reject();
});
const exportedserviceobj = new exportedservice();
describe('Statement', () => {
it('statement', async () => {
expect.assertions(1);
const outputResult = await exportedserviceobj.funcname('TestFile');
outputMock().then(outputResult);
expect(outputResult).toEqual('undefined');
});
});
在运行测试用例时;它抛出类型错误:
exportedservice.funcname is not a function
因为我刚接触打字稿;经过大量的研发我无法解决问题。请提出解决此问题的适当方法。提前致谢。
最佳答案
您必须模拟exportedservice。例如:
import * as Exportedservice from './exportedservice'
jest.mock('./exportedservice')
describe('Statement', () => {
it('statement', async () => {
Exportedserviceobj.funcname = jest.fn().mockResolvedValue('test');
const outputResult = await Exportedserviceobj.funcname('TestFile');
expect(outputResult).toEqual('test');
});
});