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