import { TestBed } from '@angular/core/testing'; import { BotService } from './bot.service'; describe('BotService', () => { let service: BotService; beforeEach(() => { TestBed.configureTestingModule({}); service = TestBed.inject(BotService); }); it('should be created', () => { expect(service).toBeTruthy(); }); });