sidebar page tree

* frontend and backend implementation
This commit is contained in:
Philipinho
2023-10-15 01:01:17 +01:00
parent e4099ad4c5
commit 2689b267cf
40 changed files with 1069 additions and 491 deletions
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { PageService } from './page.service';
describe('PageService', () => {
let service: PageService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [PageService],
}).compile();
service = module.get<PageService>(PageService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});