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