confirming two contributions at once does not throw anymore

This commit is contained in:
Moriz Wahl 2022-12-15 15:58:02 +01:00
parent 9537910413
commit cb55da5d32

View File

@ -1961,8 +1961,7 @@ describe('ContributionResolver', () => {
}) })
}) })
// In the futrue this should not throw anymore it('throws no error for the second confirmation', async () => {
it('throws an error for the second confirmation', async () => {
const r1 = mutate({ const r1 = mutate({
mutation: confirmContribution, mutation: confirmContribution,
variables: { variables: {
@ -1982,8 +1981,7 @@ describe('ContributionResolver', () => {
) )
await expect(r2).resolves.toEqual( await expect(r2).resolves.toEqual(
expect.objectContaining({ expect.objectContaining({
// data: { confirmContribution: true }, data: { confirmContribution: true },
errors: [new GraphQLError('Creation was not successful.')],
}), }),
) )
}) })