Added TOS and PrivPol pages.
All checks were successful
Production PR / QA Tests (pull_request) Successful in 45s

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

View file

@ -0,0 +1,11 @@
import { describe, expect, it } from "vitest";
import { mount, type VueWrapper } from "@vue/test-utils";
import PrivacyPolicyPage from "~/pages/legal/privacy-policy.vue";
describe("pages/legal/privacy-policy.vue", () => {
it("loads without crashing", () => {
const wrapper: VueWrapper = mount(PrivacyPolicyPage);
expect(wrapper.exists()).toBe(true);
expect(wrapper.text()).toContain("Privacy Policy");
});
});

View file

@ -0,0 +1,11 @@
import { describe, expect, it } from "vitest";
import { mount, type VueWrapper } from "@vue/test-utils";
import TermsOfServicePage from "~/pages/legal/terms-of-service.vue";
describe("pages/legal/terms-of-service.vue", () => {
it("loads without crashing", () => {
const wrapper: VueWrapper = mount(TermsOfServicePage);
expect(wrapper.exists()).toBe(true);
expect(wrapper.text()).toContain("Terms of Service");
});
});