controllers

This commit is contained in:
2022-03-29 22:03:19 -06:00
parent 2720f6319e
commit 359b73132b
49 changed files with 496 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { Test, TestingModule } from '@nestjs/testing';
import { StatusController } from './status.controller';
describe('StatusController', () => {
let controller: StatusController;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
controllers: [StatusController],
}).compile();
controller = module.get<StatusController>(StatusController);
});
it('should be defined', () => {
expect(controller).toBeDefined();
});
});