ng-implementation/airwatch/src/app/chatbot/source-block/source-block.spec.ts
2025-09-09 14:43:57 +02:00

23 lines
564 B
TypeScript

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