chore: remove unnecessary type

This commit is contained in:
Eliaz Bobadilla 2022-08-19 12:57:54 -05:00
parent 10a468706e
commit 5bacc0871c
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ describe('AppController', () => {
describe('getHello', () => { describe('getHello', () => {
it('should return "Hello World!"', () => { it('should return "Hello World!"', () => {
const appController = app.get<AppController>(AppController); const appController = app.get(AppController);
expect(appController.getHello()).toBe('Hello World!'); expect(appController.getHello()).toBe('Hello World!');
}); });
}); });