UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

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