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