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