CompUGE-Bench / src /app /components /body /control-panel /control-panel.component.spec.ts
Ahmad Shallouf
added control pael
88bf46c
raw
history blame contribute delete
639 Bytes
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ControlPanelComponent } from './control-panel.component';
describe('ControlPanelComponent', () => {
let component: ControlPanelComponent;
let fixture: ComponentFixture<ControlPanelComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [ControlPanelComponent]
})
.compileComponents();
fixture = TestBed.createComponent(ControlPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});