test: added basic unit tests (except for charts). Unit tests segregated in directories.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import Vue from 'vue'
|
||||
import { shallowMount, mount } from '@vue/test-utils'
|
||||
import BootstrapVue from 'bootstrap-vue'
|
||||
import CoreUIIcons from '@/views/icons/CoreUIIcons'
|
||||
|
||||
Vue.use(BootstrapVue)
|
||||
|
||||
describe('CoreUIIcons.vue', () => {
|
||||
it('has a name', () => {
|
||||
expect(CoreUIIcons.name).toMatch('CoreUIIcons')
|
||||
})
|
||||
it('is Vue instance', () => {
|
||||
const wrapper = shallowMount(CoreUIIcons)
|
||||
expect(wrapper.isVueInstance()).toBe(true)
|
||||
})
|
||||
it('is CoreUIIcons', () => {
|
||||
const wrapper = shallowMount(CoreUIIcons)
|
||||
expect(wrapper.is(CoreUIIcons)).toBe(true)
|
||||
})
|
||||
it('should render correct content', () => {
|
||||
const wrapper = mount(CoreUIIcons)
|
||||
expect(wrapper.find('div.card-header').text()).toMatch('CoreUI Icons New')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user