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