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