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