Files
manja_dev_ui/tests/unit/views/pages/Login.spec.js
T
2020-07-16 12:31:55 +02:00

29 lines
778 B
JavaScript

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