Phase 5 cleanup
This commit is contained in:
parent
5536acd67d
commit
76a516a417
136 changed files with 6322 additions and 1985 deletions
|
|
@ -74,7 +74,10 @@ describe(OrganizerRepository.name, () => {
|
|||
});
|
||||
|
||||
it('sets hasMore when more items exist', async () => {
|
||||
const items = Array.from({ length: 3 }, (_, i) => ({ _id: `fill-${i}`, regimenName: `R${i}` }));
|
||||
const items = Array.from({ length: 3 }, (_, i) => ({
|
||||
_id: `fill-${i}`,
|
||||
regimenName: `R${i}`,
|
||||
}));
|
||||
mockFind.mockResolvedValue(items);
|
||||
|
||||
const result = await repo.findByHousehold('hh1', 'user-1', { limit: 2 });
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue