From f7079f51de6f8b21126a611c87f5f4525d4bbfd9 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Wed, 18 Feb 2026 15:08:14 -0600 Subject: [PATCH] test: remove unused mock for patch service in application.command.test.ts - Removed the mock for the patch service to streamline the test setup. - This change enhances test clarity by eliminating unnecessary mock definitions. --- apps/dokploy/__test__/deploy/application.command.test.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/dokploy/__test__/deploy/application.command.test.ts b/apps/dokploy/__test__/deploy/application.command.test.ts index c81fab44c..be29748eb 100644 --- a/apps/dokploy/__test__/deploy/application.command.test.ts +++ b/apps/dokploy/__test__/deploy/application.command.test.ts @@ -28,9 +28,6 @@ vi.mock("@dokploy/server/db", () => { applications: { findFirst: vi.fn(), }, - patch: { - findMany: vi.fn().mockResolvedValue([]), - }, }, }, };