uoa-repository-manager-service/app/features/administration/configurator/configurator-list-of-parame.../configurator-list-of-parame...

26 lines
808 B
TypeScript

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