diff --git a/apps/dokploy/__test__/compose/domain/labels.test.ts b/apps/dokploy/__test__/compose/domain/labels.test.ts index 750be2f4..e2cc7bca 100644 --- a/apps/dokploy/__test__/compose/domain/labels.test.ts +++ b/apps/dokploy/__test__/compose/domain/labels.test.ts @@ -1,6 +1,6 @@ import type { Domain } from "@/server/api/services/domain"; import { createDomainLabels } from "@/server/utils/docker/domain"; -import { describe, it, expect } from "vitest"; +import { describe, expect, it } from "vitest"; describe("createDomainLabels", () => { const appName = "test-app"; diff --git a/apps/dokploy/__test__/compose/domain/network-root.test.ts b/apps/dokploy/__test__/compose/domain/network-root.test.ts index 19a4b192..ca8b1655 100644 --- a/apps/dokploy/__test__/compose/domain/network-root.test.ts +++ b/apps/dokploy/__test__/compose/domain/network-root.test.ts @@ -1,5 +1,5 @@ import { addDokployNetworkToRoot } from "@/server/utils/docker/domain"; -import { describe, it, expect } from "vitest"; +import { describe, expect, it } from "vitest"; describe("addDokployNetworkToRoot", () => { it("should create network object if networks is undefined", () => { diff --git a/apps/dokploy/__test__/compose/domain/network-service.test.ts b/apps/dokploy/__test__/compose/domain/network-service.test.ts index e74f6945..18faf564 100644 --- a/apps/dokploy/__test__/compose/domain/network-service.test.ts +++ b/apps/dokploy/__test__/compose/domain/network-service.test.ts @@ -1,5 +1,5 @@ import { addDokployNetworkToService } from "@/server/utils/docker/domain"; -import { describe, it, expect } from "vitest"; +import { describe, expect, it } from "vitest"; describe("addDokployNetworkToService", () => { it("should add network to an empty array", () => {