Skip to content

Commit

Permalink
test: 🧪 pass failed test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 9, 2024
1 parent b30eb07 commit 0db533f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 51 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('UserTasksResolver', () => {
it('should return user tasks for given userId and range', async () => {
const userId = 'test-user-id';
const range = { from: new Date(), to: new Date() };
const result = await resolver.findUserTasks(userId, range);
const result = await resolver.getUserTasks(userId, range);
expect(service.findMany).toHaveBeenCalledWith(userId, range);
expect(result).toEqual([]);
});
Expand Down

This file was deleted.

0 comments on commit 0db533f

Please sign in to comment.