11 lines
427 B
TypeScript
11 lines
427 B
TypeScript
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");
|
|
});
|
|
});
|