import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { OperatorComponent } from './operator.component'; describe('OperatorComponent', () => { let component: OperatorComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [OperatorComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(OperatorComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });