From 194dcdf9483b22d92323522c5a3a70a274ded957 Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Mon, 15 Dec 2025 14:30:53 +0100 Subject: [PATCH] Test deploy 2 --- tests/layouts/default/Footer.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/layouts/default/Footer.test.ts b/tests/layouts/default/Footer.test.ts index 7fa2cd2..211896a 100644 --- a/tests/layouts/default/Footer.test.ts +++ b/tests/layouts/default/Footer.test.ts @@ -32,7 +32,7 @@ describe("Footer.vue", () => { mockDate(2025); const wrapper = mount(Footer); - expect(wrapper.text()).toBe("Glowing Fiesta 2025"); + expect(wrapper.text()).toBe("Glowing Fiesta 2025(with auto-deploy)"); expect(wrapper.text()).not.toContain(" - "); }); @@ -40,7 +40,7 @@ describe("Footer.vue", () => { mockDate(2034); const wrapper = mount(Footer); - expect(wrapper.text()).toBe("Glowing Fiesta 2025 - 2034"); + expect(wrapper.text()).toBe("Glowing Fiesta 2025 - 2034(with auto-deploy)"); }); it("has proper structure / content", () => { @@ -49,6 +49,6 @@ describe("Footer.vue", () => { expect(footer.exists()).toBe(true); expect(footer.element.tagName).toBe("FOOTER"); - expect(wrapper.findAll("div")).toHaveLength(1); + expect(wrapper.findAll("div")).toHaveLength(2); }); });