Files
directus/app/src/components/v-tabs.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

23 lines
457 B
TypeScript

import { test, expect } from 'vitest';
import { mount } from '@vue/test-utils';
import VTabs from './v-tabs.vue';
import { GlobalMountOptions } from '@vue/test-utils/dist/types';
const global: GlobalMountOptions = {
stubs: ['v-tabs-items', 'v-list'],
};
test('Mount component', () => {
expect(VTabs).toBeTruthy();
const wrapper = mount(VTabs, {
slots: {
default: 'Some value',
},
global,
});
expect(wrapper.html()).toMatchSnapshot();
});