Progress on API routes

This commit is contained in:
2026-02-02 03:35:41 -05:00
parent 82128e444e
commit 7bd0bbe2d8
15 changed files with 927 additions and 99 deletions

View File

@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { EntriesController } from './entries.controller';
describe('EntriesController', () => {
let controller: EntriesController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [EntriesController],
}).compile();
controller = module.get<EntriesController>(EntriesController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});