10 lines
272 B
JavaScript
10 lines
272 B
JavaScript
import {test, describe, expect} from 'vitest'
|
|
import { mount} from '@vue/test-utils'
|
|
import VButton from '@atoms/VButton.vue';
|
|
|
|
describe('VButton', () => {
|
|
test('VButton mounted', () => {
|
|
const wrapper = mount(VButton)
|
|
expect(wrapper.exists()).toBe(true)
|
|
})
|
|
}) |