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