Skip to content

Commit

Permalink
Update apps/server/src/modules/account/domain/services/account-db.ser…
Browse files Browse the repository at this point in the history
…vice.spec.ts

Co-authored-by: Patrick Sachmann <[email protected]>
  • Loading branch information
mkreuzkam-cap and psachmann authored Dec 20, 2024
1 parent 45c7d41 commit b002a07
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -711,10 +711,7 @@ describe('AccountDbService', () => {
const { account, savedAccount } = setup();

const result = await accountService.saveAll([account]);

expect(result.length).toBe(1);
expect(result[0]).toStrictEqual(savedAccount);
expect(accountRepo.saveAll).toHaveBeenCalledTimes(1);
expect(result).toStrictEqual([savedAccount]);

Check failure on line 714 in apps/server/src/modules/account/domain/services/account-db.service.spec.ts

View workflow job for this annotation

GitHub Actions / nest_lint

Insert `↹↹↹`
});
});

Expand Down

0 comments on commit b002a07

Please sign in to comment.