无法读取null

时间:2017-07-01 13:01:05

标签: angular jasmine karma-jasmine

我正在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

我不明白这是什么问题。我该如何解决这个问题?

0 个答案:

没有答案