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
This commit is contained in:
Mauricio Siu 2025-03-09 21:10:50 -06:00
parent d4a98eb85e
commit cd8b6145f6

View File

@ -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