mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
import { shallowMount } from '@vue/test-utils'
|
|
import RelativeDateTime from './index.vue'
|
|
|
|
describe('RelativeDateTime', () => {
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
|
wrapper = shallowMount(RelativeDateTime, {})
|
|
})
|
|
|
|
it('renders', () => {
|
|
console.log(wrapper.html())
|
|
expect(wrapper.is('div')).toBe(true)
|
|
})
|
|
})
|