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