lm-piplines/tests/views/1_atoms/VButton.test.js
2024-04-24 11:13:56 +03:00

17 lines
334 B
JavaScript

import {test, describe, expect} from 'vitest'
import {mount} from '@vue/test-utils'
import VButton from '@atoms/VButton.vue';
describe("tests VButton component", () => {
test('mount test of VButton', async () => {
const wrapper = mount(VButton, {
shallow: true,
})
expect(wrapper.exists()).toBe(true)
})
})