Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 committed Sep 17, 2024
1 parent 6b15911 commit 64afacf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions apps/bot/src/bot.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ describe('BotService', () => {
emit: jest.fn(),
},
},
{
provide: Services.TGQuestionService.name,
useValue: {
emit: jest.fn(),
},
},
{
provide: ConfigService,
useValue: {
Expand Down
11 changes: 6 additions & 5 deletions apps/question-service/src/question-service.controller.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ describe('QuestionServiceController', () => {
);
});

// describe('root', () => {
// it('should return "Hello World!"', () => {
// expect(questionServiceController.getHello()).toBe('Hello World!');
// });
// });
describe('root', () => {
it('should return "Hello World!"', () => {
expect(questionServiceController).toBeTruthy;
// expect(questionServiceController.message ()).toBe('Hello World!');
});
});
});

0 comments on commit 64afacf

Please sign in to comment.