From 5fd48fd4915dd9c257f52b2aa33e19238d59365e Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Thu, 5 Oct 2023 00:17:19 +0200 Subject: [PATCH] linting --- backend/src/graphql/resolver/TransactionResolver.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/graphql/resolver/TransactionResolver.test.ts b/backend/src/graphql/resolver/TransactionResolver.test.ts index 846060914..857159a97 100644 --- a/backend/src/graphql/resolver/TransactionResolver.test.ts +++ b/backend/src/graphql/resolver/TransactionResolver.test.ts @@ -17,6 +17,7 @@ import { GraphQLError } from 'graphql' import { cleanDB, testEnvironment } from '@test/helpers' import { logger } from '@test/testSetup' +import { CONFIG } from '@/config' import { EventType } from '@/event/Events' import { SendCoinsArgs } from '@/federation/client/1_0/model/SendCoinsArgs' import { SendCoinsResult } from '@/federation/client/1_0/model/SendCoinsResult' @@ -34,7 +35,6 @@ import { bobBaumeister } from '@/seeds/users/bob-baumeister' import { garrickOllivander } from '@/seeds/users/garrick-ollivander' import { peterLustig } from '@/seeds/users/peter-lustig' import { stephenHawking } from '@/seeds/users/stephen-hawking' -import { CONFIG } from '@/config' let mutate: ApolloServerTestClient['mutate'], con: Connection let query: ApolloServerTestClient['query']