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

38 lines
662 B
TypeScript

import { test, expect } from 'vitest';
import { mount } from '@vue/test-utils';
import VBreadcrumb from './v-breadcrumb.vue';
import { GlobalMountOptions } from '@vue/test-utils/dist/types';
const global: GlobalMountOptions = {
stubs: ['v-icon', 'router-link'],
};
test('Mount component', () => {
expect(VBreadcrumb).toBeTruthy();
const wrapper = mount(VBreadcrumb, {
props: {
items: [
{
to: 'hi',
name: 'Hi',
},
{
to: 'wow',
name: 'Wow',
icon: 'close',
},
{
to: 'disabled',
name: 'Disabled',
disabled: true,
},
],
},
global,
});
expect(wrapper.html()).toMatchSnapshot();
});