Add skeletton for profile page

This commit is contained in:
kevinpauer
2022-04-03 22:32:20 +02:00
parent 9de1258f7f
commit 9115908365
13 changed files with 392 additions and 4 deletions

View File

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