mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
import { test, expect } from 'vitest';
|
|
import { mount } from '@vue/test-utils';
|
|
|
|
import VCardActions from './v-card-actions.vue';
|
|
|
|
test('Mount component', () => {
|
|
expect(VCardActions).toBeTruthy();
|
|
|
|
const wrapper = mount(VCardActions, {
|
|
slots: {
|
|
default: 'Slot Content',
|
|
},
|
|
});
|
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|