oggui/ogWebconsole/src/app/components/hardware-profile/hardware-profile.component....

24 lines
661 B
TypeScript

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