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