uoa-repository-manager-service/app/features/administration/categories-management/categories-search/categories-search.component...

26 lines
722 B
TypeScript

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