oggui/ogWebconsole/src/app/components/operative-system/operative-system.component....

24 lines
661 B
TypeScript

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