From 2810e12c1cf909e5a4e44a672f982b5c1f3c595d Mon Sep 17 00:00:00 2001 From: ogerly Date: Fri, 19 Aug 2022 10:13:39 +0200 Subject: [PATCH] fix test --- frontend/src/layouts/AuthLayout.spec.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/frontend/src/layouts/AuthLayout.spec.js b/frontend/src/layouts/AuthLayout.spec.js index 30c858ea5..4a1d7fef0 100644 --- a/frontend/src/layouts/AuthLayout.spec.js +++ b/frontend/src/layouts/AuthLayout.spec.js @@ -36,20 +36,6 @@ describe('AuthLayout', () => { wrapper = Wrapper() }) - describe('Mobile Version Start', () => { - beforeEach(() => { - wrapper.findComponent({ name: 'AuthMobileStart' }).vm.$emit('set-mobile-start', true) - }) - - it('has Component AuthMobileStart', () => { - expect(wrapper.findComponent({ name: 'AuthMobileStart' }).exists()).toBe(true) - }) - - it('has Component AuthNavbarSmall', () => { - expect(wrapper.findComponent({ name: 'AuthNavbarSmall' }).exists()).toBe(true) - }) - }) - describe('Desktop Version Start', () => { beforeEach(() => { wrapper.vm.mobileStart = false