createVuetifyInstance
La fonction createVuetifyInstance
permet de créer une instance Vuetify.
Utilisation
API
Utilisation
import Vue from 'vue';
import Vuetify from 'vuetify/lib';
import Component from '../';
import {
Wrapper,
shallowMount,
createLocalVue,
createVuetifyInstance,
installGlobalPlugins
} from '@cnamts/vue-dot/src/helpers/testUtils';
describe('Component', () => {
const localVue = createLocalVue();
let wrapper: Wrapper<Vue>;
let vuetify: Vuetify;
installGlobalPlugins(localVue);
beforeEach(() => {
vuetify = createVuetifyInstance();
});
it('renders correctly', () => {
wrapper = shallowMount(Component, {
localVue,
vuetify
});
expect(wrapper).toMatchSnapshot();
});
});