mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-01-20 20:01:25 +00:00
17 lines
330 B
TypeScript
17 lines
330 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import { describe, it, expect } from 'vitest'
|
|
|
|
import PageShell from './PageShell.vue'
|
|
|
|
describe('PageShell', () => {
|
|
const wrapper = mount(PageShell, {
|
|
slots: {
|
|
default: 'Page Content',
|
|
},
|
|
})
|
|
|
|
it('renders', () => {
|
|
expect(wrapper.element).toMatchSnapshot()
|
|
})
|
|
})
|