uoa-repository-manager-service/app/features/administration/configurator/configurator.component.spec.ts

26 lines
693 B
TypeScript

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