From 31d883d1defbeeb2353ed8331e5f613e1a9a0ee5 Mon Sep 17 00:00:00 2001 From: mahula Date: Thu, 8 Dec 2022 14:14:18 +0100 Subject: [PATCH] adapt app unit tests to design changes --- frontend/src/App.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/App.spec.js b/frontend/src/App.spec.js index 496dfd7f5..3041cb40a 100644 --- a/frontend/src/App.spec.js +++ b/frontend/src/App.spec.js @@ -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', () => {