29 lines
854 B
TypeScript
29 lines
854 B
TypeScript
/* tslint:disable:no-unused-variable */
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { By } from '@angular/platform-browser';
|
|
import { DebugElement } from '@angular/core';
|
|
|
|
import { MenssageInformationComponent } from './menssage-information.component';
|
|
|
|
describe('MenssageInformationComponent', () => {
|
|
let component: MenssageInformationComponent;
|
|
let fixture: ComponentFixture<MenssageInformationComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ MenssageInformationComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(MenssageInformationComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|