From e5215b56aa3f8f1f6796f7be5c1f365bc00cc836 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Mon, 14 Mar 2022 15:18:45 +0100 Subject: [PATCH] do not reset db on start of database in backend unit tests --- backend/test/helpers.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/test/helpers.ts b/backend/test/helpers.ts index aa11d54e9..74addae3d 100644 --- a/backend/test/helpers.ts +++ b/backend/test/helpers.ts @@ -35,7 +35,6 @@ export const testEnvironment = async () => { const mutate = testClient.mutate const query = testClient.query await initialize() - await resetDB() return { mutate, query, con } }