UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

12 lines (9 loc) 273 B
import { describe, it, expect } from 'vitest' import { mount } from '@vue/test-utils' import Accordion from '../Accordion.vue' describe('Accordion', () => { it('renders properly', () => { const wrapper = mount(Accordion) expect(wrapper.vm).toBeTruthy() }) })