ydioy/tests/views/AboutView.spec.ts
2025-09-11 15:08:48 +02:00

11 lines
317 B
TypeScript

import { describe, it, expect } from "vitest";
import { mount } from "@vue/test-utils";
import AboutView from "../../src/views/AboutView.vue";
describe("AboutView", () => {
const wrapper = mount(AboutView);
it("renders properly", () => {
expect(wrapper.text()).toContain("This is an about page");
});
});