All checks were successful
Production PR / QA Tests (pull_request) Successful in 45s
11 lines
435 B
TypeScript
11 lines
435 B
TypeScript
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");
|
|
});
|
|
});
|