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