Files
directus/app/src/components/v-card-actions.test.ts
Rijk van Zanten 4eae2de686 Move updated components to app (#15374)
* Move updated components to app

* Make sure storybook is alive
2022-09-02 14:42:00 -04:00

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();
});