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