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