From cd8b6145f6109f2e6a94edae2b7f34e806d5b4c7 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 9 Mar 2025 21:10:50 -0600 Subject: [PATCH] refactor(templates): update import paths in template test file - Adjust import statements to reflect new template processing module locations - Maintain consistent import structure for template-related utilities - Ensure test file compatibility with recent template processing refactoring --- apps/dokploy/__test__/templates/config.template.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dokploy/__test__/templates/config.template.test.ts b/apps/dokploy/__test__/templates/config.template.test.ts index f6d517e7a..fa552f409 100644 --- a/apps/dokploy/__test__/templates/config.template.test.ts +++ b/apps/dokploy/__test__/templates/config.template.test.ts @@ -1,7 +1,7 @@ import { describe, expect, it } from "vitest"; -import type { CompleteTemplate } from "@dokploy/server/templates/utils/processors"; -import { processTemplate } from "@dokploy/server/templates/utils/processors"; -import type { Schema } from "@dokploy/server/templates/utils"; +import type { CompleteTemplate } from "@dokploy/server/templates/processors"; +import { processTemplate } from "@dokploy/server/templates/processors"; +import type { Schema } from "@dokploy/server/templates"; describe("processTemplate", () => { // Mock schema for testing