Skip to content

Commit

Permalink
test: add missing method (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
aalemayhu authored Aug 6, 2024
1 parent 22d16d3 commit 7a331bf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/controllers/Upload/UploadController.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ describe('Upload file', () => {
deleteBlocksByOwner: function (owner: number): Promise<number> {
return Promise.resolve(owner);
},
deleteNotionData(owner: number): Promise<boolean> {
return Promise.resolve(true);
}
};
const uploadService = new UploadService(repository);
const notionService = new NotionService(notionRepository);
Expand Down

0 comments on commit 7a331bf

Please sign in to comment.