ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.spec.ts
2025-08-08 10:57:00 +02:00

23 lines
543 B
TypeScript

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