29 lines
814 B
JavaScript
29 lines
814 B
JavaScript
import Vue from 'vue'
|
|
import { shallowMount } from '@vue/test-utils'
|
|
import CoreuiVue from '@coreui/vue'
|
|
import Register from '@/views/pages/Register'
|
|
|
|
Vue.use(CoreuiVue)
|
|
|
|
describe('Register.vue', () => {
|
|
it('has a name', () => {
|
|
expect(Register.name).toBe('Register')
|
|
})
|
|
it('is Vue instance', () => {
|
|
const wrapper = shallowMount(Register)
|
|
expect(wrapper.vm).toBeTruthy()
|
|
})
|
|
it('is Register', () => {
|
|
const wrapper = shallowMount(Register)
|
|
expect(wrapper.findComponent(Register)).toBeTruthy()
|
|
})
|
|
it('should render correct content', () => {
|
|
const wrapper = shallowMount(Register)
|
|
expect(wrapper.find('h1').text()).toMatch('Register')
|
|
})
|
|
test('renders correctly', () => {
|
|
const wrapper = shallowMount(Register)
|
|
expect(wrapper.element).toMatchSnapshot()
|
|
})
|
|
})
|