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