我正在Angular2和我的例子中测试Karma Jasmin:
import {LoginComponent} from './login.component';
describe('Component: LoginComponent', ()=>{
it('should have the title of "Login Cybercrime Analytics"', ()=>{
const component = new LoginComponent(null, null, null, null);
expect(component.title).toEqual("Login Cybercrime Analytics");
});
});
我收到错误:
TypeError:无法读取属性' group'为null
我的登录服务期待以下:
(别名)新的LoginComponent(fb:FormBuilder,路由器:路由器,http: Http,loginService:LoginService):LoginComponent导入 LoginComponent
我不明白这是什么问题。我该如何解决这个问题?