import { TestBed } from '@angular/core/testing'; import { ReactiveFormsModule } from '@angular/forms'; import { ContactFormService } from './contact-form.service'; describe('ContactFormService', () => { beforeEach(() => TestBed.configureTestingModule({ imports: [ReactiveFormsModule], })); it('should be created', () => { const service: ContactFormService = TestBed.get(ContactFormService); expect(service).toBeTruthy(); }); });