renommage de lib, rendre buildable

This commit is contained in:
Tykayn 2025-08-08 10:57:00 +02:00 committed by tykayn
parent 1706c64713
commit a89007a81b
9896 changed files with 478996 additions and 496 deletions

View file

@ -0,0 +1,23 @@
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();
});
});