From 2ee8ad4109bdbc40ba11b9d9b342a9aa7ca40858 Mon Sep 17 00:00:00 2001 From: kolaente Date: Fri, 3 Apr 2026 20:51:08 +0200 Subject: [PATCH] feat: truncate all tables before each e2e test for clean isolation --- frontend/tests/support/fixtures.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/tests/support/fixtures.ts b/frontend/tests/support/fixtures.ts index f04fe8c0b..1e5a9649f 100644 --- a/frontend/tests/support/fixtures.ts +++ b/frontend/tests/support/fixtures.ts @@ -20,6 +20,7 @@ export const test = base.extend<{ }, currentUser: async ({apiContext}, use) => { + await Factory.truncateAll() const user = await createFakeUser() await use(user) },