2019-09-23 05:23:24 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
|
|
|
|
import { IntroComponent } from './intro.component';
|
|
|
|
|
2019-09-26 02:11:22 +00:00
|
|
|
describe('App::Layout::Messenger::IntroComponent', () => {
|
2019-09-23 05:23:24 +00:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
});
|