Added 'Terms of Service' and 'Privacy policy' pages
All checks were successful
Production Build and Deploy / Build (push) Successful in 1m9s
Production Build and Deploy / Deploy (push) Successful in 28s

This commit is contained in:
Liviu Burcusel 2026-01-15 15:53:35 +01:00
parent 0add58254d
commit 176665d7d4
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
14 changed files with 98 additions and 24 deletions

View file

@ -63,7 +63,7 @@ describe("Default.vue", () => {
});
await flushPromises();
const footer = wrapper.find("[data-testid='footer']");
expect(footer.text()).toBe("Glowing Fiesta 2025 (1.0.1)");
expect(footer.text()).toBe("Glowing Fiesta 2025");
});
it("footer shows range when current year is not 2025", async () => {
@ -75,7 +75,7 @@ describe("Default.vue", () => {
});
await flushPromises();
const footer = wrapper.find("[data-testid='footer']");
expect(footer.text()).toBe("Glowing Fiesta 2025 - 2069 (1.0.1)");
expect(footer.text()).toBe("Glowing Fiesta 2025 - 2069");
});
});
});