uoa-repository-manager-service/app/features/administration/configurator/configurator-edit-value/configurator-edit-value.com...

26 lines
758 B
TypeScript

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