diff --git a/backend/src/graphql/resolver/ContributionResolver.test.ts b/backend/src/graphql/resolver/ContributionResolver.test.ts index 2a40f2100..323efe5d9 100644 --- a/backend/src/graphql/resolver/ContributionResolver.test.ts +++ b/backend/src/graphql/resolver/ContributionResolver.test.ts @@ -203,7 +203,7 @@ describe('ContributionResolver', () => { await expect(EventProtocol.find()).resolves.toContainEqual( expect.objectContaining({ type: EventProtocolType.CONTRIBUTION_CREATE, - // amount: '100', FAILS even though it is stored correctly in the database, event has 100 stored + amount: expect.decimalEqual(100), contributionId: contribution.data.createContribution.id, userId: bibi.data.login.id, }),