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