simpleat/src/app/card-category/card-category.component.spec.ts
2022-01-18 17:25:08 +01:00

25 lines
669 B
TypeScript

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