From bccef0da4c3a5b153b4410352039c6ba31562d1c Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 18:23:16 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../__test__/compose/domain/host-rule-format.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/dokploy/__test__/compose/domain/host-rule-format.test.ts b/apps/dokploy/__test__/compose/domain/host-rule-format.test.ts index 6a4aee50e..27e696b20 100644 --- a/apps/dokploy/__test__/compose/domain/host-rule-format.test.ts +++ b/apps/dokploy/__test__/compose/domain/host-rule-format.test.ts @@ -130,7 +130,9 @@ describe("Host rule format regression tests", () => { l.includes(".rule="), ); - expect(parsedRuleLabel).toContain("Host(`example.com`) && PathPrefix(`/api`)"); + expect(parsedRuleLabel).toContain( + "Host(`example.com`) && PathPrefix(`/api`)", + ); }); }); @@ -157,7 +159,9 @@ describe("Host rule format regression tests", () => { expect(ruleLabel).toBeDefined(); expect(ruleLabel).toContain(`Host(\`${host}\`)`); // Verify parenthesis is present - expect(ruleLabel).toMatch(new RegExp(`Host\\(\\\`${host.replace(/\./g, "\\.")}\\\`\\)`)); + expect(ruleLabel).toMatch( + new RegExp(`Host\\(\\\`${host.replace(/\./g, "\\.")}\\\`\\)`), + ); }); } });