mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
* fix(admin): update test files predeploy * fix(admin): update test files predeploy * fix(admin): update test files predeploy
16 lines
369 B
JavaScript
16 lines
369 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import { describe, it, expect, beforeEach } from 'vitest'
|
|
import ContentFooter from './ContentFooter.vue'
|
|
|
|
describe('ContentFooter', () => {
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
|
wrapper = mount(ContentFooter, {})
|
|
})
|
|
|
|
it('renders the footer', () => {
|
|
expect(wrapper.find('.content-footer').exists()).toBe(true)
|
|
})
|
|
})
|