From b3b9b1956c1b880846c8dd0d657fde97379787bd Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 9 Mar 2025 21:35:27 -0600 Subject: [PATCH] test(templates): remove console log in template processing test - Remove unnecessary console.log statement in config template test - Maintain clean test code without debugging output - Ensure test readability and performance --- apps/dokploy/__test__/templates/config.template.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/apps/dokploy/__test__/templates/config.template.test.ts b/apps/dokploy/__test__/templates/config.template.test.ts index 50ef7627..74b84cd5 100644 --- a/apps/dokploy/__test__/templates/config.template.test.ts +++ b/apps/dokploy/__test__/templates/config.template.test.ts @@ -367,7 +367,6 @@ describe("processTemplate", () => { }; const result = processTemplate(template, mockSchema); - console.log(result); expect(result.envs).toHaveLength(3); expect(result.domains).toHaveLength(1); expect(result.mounts).toHaveLength(1);