UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

12 lines (9 loc) 280 B
import { describe, it, expect } from 'vitest' import { mount } from '@vue/test-utils' import Spacer from '../Spacer' describe('Spacer', () => { it('renders without errors', () => { const wrapper = mount(Spacer) expect(wrapper.classes()).toContain('flex-grow') }) })