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