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