UNPKG

@ishitatsuyuki/oruga-next

Version:

UI components for Vue.js and CSS framework agnostic

15 lines (11 loc) 298 B
import { mount } from '@vue/test-utils' import OSkeleton from '@components/skeleton/Skeleton' let wrapper describe('OSkeleton', () => { beforeEach(() => { wrapper = mount(OSkeleton) }) it('render correctly', () => { expect(wrapper.html()).toMatchSnapshot() }) })