Files
tool-website/src/app/components/custom-description/custom-description.spec.ts
2025-11-19 19:14:40 +01:00

23 lines
602 B
TypeScript

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