test: added basic unit tests (except for charts). Unit tests segregated in directories.

This commit is contained in:
woothu
2018-10-12 10:01:54 +02:00
parent 364c951ef2
commit ceee8b07ca
45 changed files with 70 additions and 2 deletions
+24
View File
@@ -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')
})
})
+24
View File
@@ -0,0 +1,24 @@
import Vue from 'vue'
import { shallowMount, mount } from '@vue/test-utils'
import BootstrapVue from 'bootstrap-vue'
import Flags from '@/views/icons/Flags'
Vue.use(BootstrapVue)
describe('Flags.vue', () => {
it('has a name', () => {
expect(Flags.name).toMatch('flags')
})
it('is Vue instance', () => {
const wrapper = shallowMount(Flags)
expect(wrapper.isVueInstance()).toBe(true)
})
it('is Flags', () => {
const wrapper = shallowMount(Flags)
expect(wrapper.is(Flags)).toBe(true)
})
it('should render correct content', () => {
const wrapper = mount(Flags)
expect(wrapper.find('div.card-header').text()).toMatch('Flags')
})
})
+24
View File
@@ -0,0 +1,24 @@
import Vue from 'vue'
import { shallowMount, mount } from '@vue/test-utils'
import BootstrapVue from 'bootstrap-vue'
import FontAwesome from '@/views/icons/FontAwesome'
Vue.use(BootstrapVue)
describe('FontAwesome.vue', () => {
it('has a name', () => {
expect(FontAwesome.name).toMatch('font-awesome')
})
it('is Vue instance', () => {
const wrapper = shallowMount(FontAwesome)
expect(wrapper.isVueInstance()).toBe(true)
})
it('is FontAwesome', () => {
const wrapper = shallowMount(FontAwesome)
expect(wrapper.is(FontAwesome)).toBe(true)
})
it('should render correct content', () => {
const wrapper = mount(FontAwesome)
expect(wrapper.find('div.card-header').text()).toMatch('50 New Icons in 4.7')
})
})
+24
View File
@@ -0,0 +1,24 @@
import Vue from 'vue'
import { shallowMount, mount } from '@vue/test-utils'
import BootstrapVue from 'bootstrap-vue'
import SimpleLineIcons from '@/views/icons/SimpleLineIcons'
Vue.use(BootstrapVue)
describe('SimpleLineIcons.vue', () => {
it('has a name', () => {
expect(SimpleLineIcons.name).toMatch('simple-line-icons')
})
it('is Vue instance', () => {
const wrapper = shallowMount(SimpleLineIcons)
expect(wrapper.isVueInstance()).toBe(true)
})
it('is SimpleLineIcons', () => {
const wrapper = shallowMount(SimpleLineIcons)
expect(wrapper.is(SimpleLineIcons)).toBe(true)
})
it('should render correct content', () => {
const wrapper = mount(SimpleLineIcons)
expect(wrapper.find('div.card-header').text()).toMatch('Simple Line Icons')
})
})