From adfe29e10c1a9bb38a5a256bfd29b0532a34505a Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Sun, 30 Nov 2025 12:21:02 -0600 Subject: [PATCH] feat: add `args` field to application configuration in tests - Introduced an `args` field in the `baseApp` configuration for both drop and traefik test files to support command arguments in application testing. - This change aligns with recent updates to application schemas, enhancing the flexibility of command handling in tests. --- apps/dokploy/__test__/drop/drop.test.ts | 1 + apps/dokploy/__test__/traefik/traefik.test.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/apps/dokploy/__test__/drop/drop.test.ts b/apps/dokploy/__test__/drop/drop.test.ts index d22c1c4b0..bd2d3c981 100644 --- a/apps/dokploy/__test__/drop/drop.test.ts +++ b/apps/dokploy/__test__/drop/drop.test.ts @@ -33,6 +33,7 @@ const baseApp: ApplicationNested = { buildServerId: "", buildRegistryId: "", buildRegistry: null, + args: [], giteaBuildPath: "", previewRequireCollaboratorPermissions: false, giteaId: "", diff --git a/apps/dokploy/__test__/traefik/traefik.test.ts b/apps/dokploy/__test__/traefik/traefik.test.ts index f63175748..e6b98c3ba 100644 --- a/apps/dokploy/__test__/traefik/traefik.test.ts +++ b/apps/dokploy/__test__/traefik/traefik.test.ts @@ -16,6 +16,7 @@ const baseApp: ApplicationNested = { buildRegistry: null, giteaBuildPath: "", giteaId: "", + args: [], cleanCache: false, applicationStatus: "done", endpointSpecSwarm: null,