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