UNPKG

@oruga-ui/oruga-next

Version:

UI components for Vue.js and CSS framework agnostic

11 lines (8 loc) 346 B
import { describe, test, expect } from "vitest"; import { mount } from "@vue/test-utils"; import OBreadcrumbItem from "@/components/breadcrumb//BreadcrumbItem.vue"; describe("OBreadcrumbItem tests", () => { test("expect should wrap in dropdown", () => { expect(() => mount(OBreadcrumbItem)).toThrowError("should wrap"); }); });