adapt app unit tests to design changes

This commit is contained in:
mahula 2022-12-08 14:14:18 +01:00
parent eb88644761
commit 31d883d1de

View File

@ -1,4 +1,4 @@
import { mount, RouterLinkStub } from '@vue/test-utils'
import { shallowMount, RouterLinkStub } from '@vue/test-utils'
import App from './App'
const localVue = global.localVue
@ -32,7 +32,7 @@ describe('App', () => {
let wrapper
const Wrapper = () => {
return mount(App, { localVue, mocks, stubs })
return shallowMount(App, { localVue, mocks, stubs })
}
describe('mount', () => {