frontend-apps/users-manage/tests/views/3_organisms/UsersManagerTitle.test.js
2024-03-05 11:36:21 +03:00

17 lines
402 B
JavaScript

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