next-ucap-messenger/projects/ucap-webmessenger-app/src/app/layouts/messenger/components/intro.component.spec.ts
2019-09-26 11:11:22 +09:00

25 lines
638 B
TypeScript

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