* Added default layout for the site * App is in light mode by default. * App is in light mode by default.
11 lines
328 B
TypeScript
11 lines
328 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { mount, type VueWrapper } from "@vue/test-utils";
|
|
import IndexPage from "~/pages/index.vue";
|
|
|
|
describe("pages/index.vue", () => {
|
|
const wrapper: VueWrapper = mount(IndexPage, {});
|
|
|
|
it("loads without crashing", () => {
|
|
expect(wrapper.exists()).toBe(true);
|
|
});
|
|
});
|