yarn test DashboardLayout_gdd.spec.js

This commit is contained in:
ogerly 2021-12-10 08:33:31 +01:00
parent 14c6e11d8b
commit 63ce5c4b93
3 changed files with 11 additions and 8 deletions

View File

@ -70,8 +70,12 @@ describe('DashboardLayoutGdd', () => {
wrapper = Wrapper()
})
it('has a navbar', () => {
expect(wrapper.find('.main-navbar').exists()).toBeTruthy()
})
it('has a sidebar', () => {
expect(wrapper.find('nav#sidenav-main').exists()).toBeTruthy()
expect(wrapper.find('.main-sidebar').exists()).toBeTruthy()
})
it('has a main content div', () => {
@ -79,9 +83,10 @@ describe('DashboardLayoutGdd', () => {
})
it('has a footer inside the main content', () => {
expect(wrapper.find('div.main-content').find('footer.footer').exists()).toBeTruthy()
expect(wrapper.find('div.main-page').find('footer.footer').exists()).toBeTruthy()
})
/*
describe('navigation bar', () => {
let navbar
@ -271,5 +276,6 @@ describe('DashboardLayoutGdd', () => {
})
})
})
*/
})
})

View File

@ -1,6 +1,7 @@
<template>
<div>
<navbar
class="main-navbar"
:balance="balance"
:visible="visible"
@set-visible="setVisible"
@ -10,10 +11,10 @@
/>
<div class="content-gradido">
<div class="d-none d-sm-none d-md-none d-lg-flex shadow-lg" style="width: 300px">
<sidebar @getElopageLink="getElopageLink" @admin="admin" @logout="logout" />
<sidebar class="main-sidebar" @getElopageLink="getElopageLink" @admin="admin" @logout="logout" />
</div>
<div class="ml-2 mr-2" style="width: 100%" @click="visible = false">
<div class="main-page ml-2 mr-2" style="width: 100%" @click="visible = false">
<div class="main-content">
<fade-transition :duration="200" origin="center top" mode="out-in">
<router-view

View File

@ -38,10 +38,6 @@ describe('SendOverview', () => {
wrapper = Wrapper()
})
it('has a status GDD line gdd-status-gdd', () => {
expect(wrapper.find('div.gdd-status-gdd').exists()).toBeTruthy()
})
it('has a send field', () => {
expect(wrapper.find('div.gdd-send').exists()).toBeTruthy()
})