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