mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 21:51:26 +00:00
23 lines
602 B
TypeScript
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();
|
|
});
|
|
});
|