From eec79000c9003e415daf6bed901a968a4b976140 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Thu, 28 Apr 2022 11:59:52 +0200 Subject: [PATCH] linting --- backend/src/graphql/resolver/AdminResolver.test.ts | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/backend/src/graphql/resolver/AdminResolver.test.ts b/backend/src/graphql/resolver/AdminResolver.test.ts index c2a9256fd..cf51b9e25 100644 --- a/backend/src/graphql/resolver/AdminResolver.test.ts +++ b/backend/src/graphql/resolver/AdminResolver.test.ts @@ -552,7 +552,9 @@ describe('AdminResolver', () => { mutate({ mutation: createPendingCreation, variables }), ).resolves.toEqual( expect.objectContaining({ - errors: [new GraphQLError('No information for available creations for the given date')], + errors: [ + new GraphQLError('No information for available creations for the given date'), + ], }), ) }) @@ -570,7 +572,9 @@ describe('AdminResolver', () => { mutate({ mutation: createPendingCreation, variables }), ).resolves.toEqual( expect.objectContaining({ - errors: [new GraphQLError('No information for available creations for the given date')], + errors: [ + new GraphQLError('No information for available creations for the given date'), + ], }), ) }) @@ -588,7 +592,9 @@ describe('AdminResolver', () => { mutate({ mutation: createPendingCreation, variables }), ).resolves.toEqual( expect.objectContaining({ - errors: [new GraphQLError('No information for available creations for the given date')], + errors: [ + new GraphQLError('No information for available creations for the given date'), + ], }), ) })