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