nested-forms/libs/contact/src/lib/services/contact-form.service.spec.ts

16 lines
452 B
TypeScript

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();
});
});