From 47470e234305053f0f96eeb6e00f008a05534d22 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 08:05:36 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- apps/dokploy/__test__/setup.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/dokploy/__test__/setup.ts b/apps/dokploy/__test__/setup.ts index f01be8a21..5af01d147 100644 --- a/apps/dokploy/__test__/setup.ts +++ b/apps/dokploy/__test__/setup.ts @@ -26,7 +26,9 @@ vi.mock("@dokploy/server/db", () => { return { db: { select: vi.fn(() => chain), - insert: vi.fn(() => ({ values: () => ({ returning: () => Promise.resolve([{}]) }) })), + insert: vi.fn(() => ({ + values: () => ({ returning: () => Promise.resolve([{}]) }), + })), update: vi.fn(() => chain), delete: vi.fn(() => chain), query: new Proxy({} as Record, {