我有一个要与Karma测试的控制器。我想将某些功能移出范围,但仍要对其进行独立测试。我尝试将其在控制器中初始化为
function test() = {...}
那在测试中给了我这个错误:
ReferenceError: Can't find variable: test
如果我尝试这样做
this.test = function() {...}
我知道
TypeError: 'undefined' is not a function (evaluating 'this.test')
。
在同一测试中,我可以访问示波器功能。请帮忙!角度的新手