如何使用 jasmine-karna 对 angular 中的嵌套函数进行单元测试
How to unit test nested functions in angular using jasmine-karna
我正在尝试测试最后调用 GetRole 函数的 SetRole 函数,但我无法在代码覆盖率中覆盖该行。请指导我测试级联函数、嵌套函数、函数中的函数。
component.ts
SetRole(inp){
this.role = inp;
this.GetRole()
}
试试这个:
it('SetRole',() => {
const inp = 'dummyInput';
const spy = spyOn(component,'GetRole')
component.SetRole(inp)
expect(spy).toHaveBeenCalled()
});
我正在尝试测试最后调用 GetRole 函数的 SetRole 函数,但我无法在代码覆盖率中覆盖该行。请指导我测试级联函数、嵌套函数、函数中的函数。
component.ts
SetRole(inp){
this.role = inp;
this.GetRole()
}
试试这个:
it('SetRole',() => {
const inp = 'dummyInput';
const spy = spyOn(component,'GetRole')
component.SetRole(inp)
expect(spy).toHaveBeenCalled()
});