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.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/app.controller.spec.ts b/server/app.controller.spec.ts
index 35a53c5..53d6cf8 100644
--- a/server/app.controller.spec.ts
+++ b/server/app.controller.spec.ts
@@ -13,9 +13,9 @@ describe('AppController', () => {
appController = app.get<AppController>(AppController);
});
- describe('root', () => {
- it('should return "Hello World!"', () => {
- expect(appController.index()).toBe('Hello World!');
+ describe('index', () => {
+ it('should run without crashing', () => {
+ expect(appController.index()).toBeUndefined();
});
});
});