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