25 lines
674 B
TypeScript

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