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