Remove query of contribution message resolver test since it is never used.

This commit is contained in:
elweyn 2022-09-22 12:34:03 +02:00
parent 98aca9ff52
commit 61f59a2594

View File

@ -22,14 +22,13 @@ jest.mock('@/mailer/sendAddedContributionMessageEmail', () => {
}
})
let mutate: any, query: any, con: any
let mutate: any, con: any
let testEnv: any
let result: any
beforeAll(async () => {
testEnv = await testEnvironment()
mutate = testEnv.mutate
query = testEnv.query
con = testEnv.con
await cleanDB()
})