ng-implementation/my-workspace/projects/sae-lib/chatbot/bot-talks/bot-talks.spec.ts

24 lines
543 B
TypeScript
Raw Normal View History

2025-08-07 16:42:16 +02:00
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();
});
});