@oruga-ui/oruga-next
Version:
UI components for Vue.js and CSS framework agnostic
11 lines (8 loc) • 317 B
text/typescript
import { describe, expect, test } from "vitest";
import { mount } from "@vue/test-utils";
import OListItem from "@/components/listbox/ListItem.vue";
describe("OListItem tests", () => {
test("expect should wrap in listbox", () => {
expect(() => mount(OListItem)).toThrowError("should wrap");
});
});