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