Added 'Terms of Service' and 'Privacy policy' pages
This commit is contained in:
parent
0add58254d
commit
176665d7d4
14 changed files with 98 additions and 24 deletions
11
tests/pages/legal/privacy-policy.test.ts
Normal file
11
tests/pages/legal/privacy-policy.test.ts
Normal 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");
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue