From 544b4da370ac2d3e8bd1d5571b93d139f64cfda8 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Fri, 4 Feb 2022 17:02:40 +0100 Subject: [PATCH] remove artifacts --- admin/src/components/UserTable.spec.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/admin/src/components/UserTable.spec.js b/admin/src/components/UserTable.spec.js index b83711c18..d900b126d 100644 --- a/admin/src/components/UserTable.spec.js +++ b/admin/src/components/UserTable.spec.js @@ -1,9 +1,7 @@ -import { createLocalVue, mount } from '@vue/test-utils' -import { BootstrapVue, IconsPlugin } from 'bootstrap-vue' +import { mount } from '@vue/test-utils' import UserTable from './UserTable.vue' -let localVue -// const localVue = global.localVue +const localVue = global.localVue const apolloQueryMock = jest.fn() apolloQueryMock.mockResolvedValue() @@ -133,9 +131,6 @@ describe('UserTable', () => { } const Wrapper = (propsData) => { - localVue = createLocalVue() - localVue.use(BootstrapVue) - localVue.use(IconsPlugin) return mount(UserTable, { localVue, propsData, mocks }) }