summaryrefslogtreecommitdiff
path: root/server/app.controller.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/app.controller.spec.ts')
-rw-r--r--server/app.controller.spec.ts13
1 files changed, 6 insertions, 7 deletions
diff --git a/server/app.controller.spec.ts b/server/app.controller.spec.ts
index d22f389..c60632d 100644
--- a/server/app.controller.spec.ts
+++ b/server/app.controller.spec.ts
@@ -1,6 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { AppController } from './app.controller';
-import { AppService } from './app.service';
describe('AppController', () => {
let appController: AppController;
@@ -8,15 +7,15 @@ describe('AppController', () => {
beforeEach(async () => {
const app: TestingModule = await Test.createTestingModule({
controllers: [AppController],
- providers: [AppService],
+ providers: [],
}).compile();
appController = app.get<AppController>(AppController);
});
- describe('root', () => {
- it('should return "Hello World!"', () => {
- expect(appController.getHello()).toBe('Hello World!');
- });
- });
+ // describe('root', () => {
+ // it('should return "Hello World!"', () => {
+ // expect(appController.getHello()).toBe('Hello World!');
+ // });
+ // });
});