uoa-repository-manager-service/app/features/administration/forms/template-form/template-form.component.spe...

26 lines
694 B
TypeScript

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