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