Files
MeshChatX/tests/frontend/FormSubLabel.test.js

20 lines
581 B
JavaScript

import { mount } from "@vue/test-utils";
import { describe, it, expect } from "vitest";
import FormSubLabel from "@/components/forms/FormSubLabel.vue";
describe("FormSubLabel.vue", () => {
it("renders slot content", () => {
const wrapper = mount(FormSubLabel, {
slots: {
default: "Sub Label Text",
},
});
expect(wrapper.text()).toBe("Sub Label Text");
});
it("has correct classes", () => {
const wrapper = mount(FormSubLabel);
expect(wrapper.classes()).toContain("text-xs");
});
});