From 329a6c550040f84554ed9bd4472a346e76092eea Mon Sep 17 00:00:00 2001 From: elweyn Date: Wed, 29 Jun 2022 11:21:03 +0200 Subject: [PATCH] Fix linting. --- backend/src/graphql/resolver/ContributionResolver.test.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/src/graphql/resolver/ContributionResolver.test.ts b/backend/src/graphql/resolver/ContributionResolver.test.ts index 43a57247e..7d1a1b8e9 100644 --- a/backend/src/graphql/resolver/ContributionResolver.test.ts +++ b/backend/src/graphql/resolver/ContributionResolver.test.ts @@ -1,14 +1,10 @@ import { bibiBloxberg } from '@/seeds/users/bibi-bloxberg' -import { peterLustig } from '@/seeds/users/peter-lustig' import { createContribution } from '@/seeds/graphql/mutations' import { login } from '@/seeds/graphql/queries' import { cleanDB, resetToken, testEnvironment } from '@test/helpers' import { GraphQLError } from 'graphql' import { User } from '@entity/User' -import { Contribution } from '@entity/Contribution' import { userFactory } from '@/seeds/factory/user' -import { garrickOllivander } from '@/seeds/users/garrick-ollivander' -import { stephenHawking } from '@/seeds/users/stephen-hawking' let mutate: any, query: any, con: any let testEnv: any @@ -27,7 +23,6 @@ afterAll(async () => { }) let user: User -let creation: Contribution | void describe('ContributionResolver', () => { describe('createContribution', () => {