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