Files
hammond/ui/src/router/views/home.unit.js
Akhil Gupta d25c30a7b2 first commit
2021-05-29 15:20:50 +05:30

13 lines
284 B
JavaScript

import Home from './home.vue'
describe('@views/home', () => {
it('is a valid view', () => {
expect(Home).toBeAViewComponent()
})
it('renders an element', () => {
const { element } = shallowMountView(Home)
expect(element.textContent).toContain('Home Page')
})
})