UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

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