glowing-fiesta/tests/layouts/Default.test.ts
Liviu Burcusel d1967f718e
Added default layout to project
* Added default layout for the site

* App is in light mode by default.

* App is in light mode by default.
2025-11-12 12:50:56 +01:00

11 lines
336 B
TypeScript

import { describe, expect, it } from "vitest";
import { mount, type VueWrapper } from "@vue/test-utils";
import DefaultLayout from "~/layouts/Default.vue";
describe("Default.vue", () => {
const wrapper: VueWrapper = mount(DefaultLayout, {});
it("loads without crashing", () => {
expect(wrapper.exists()).toBe(true);
});
});