import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { IdentityComponent } from './identity.component'; describe('IdentityComponent', () => { let component: IdentityComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ IdentityComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(IdentityComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });