uoa-repository-manager-service/app/features/administration/forms/verification-rule-form/verification-rule-form.comp...

26 lines
751 B
TypeScript

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