tests: add some issing tests

This commit is contained in:
xidedix
2018-08-20 16:37:33 +02:00
parent 87e783e692
commit ea01f937b2
45 changed files with 1141 additions and 17 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 ListGroups from '@/views/base/ListGroups'
Vue.use(BootstrapVue)
describe('ListGroups.vue', () => {
it('has a name', () => {
expect(ListGroups.name).toMatch('list-groups')
})
it('is Vue instance', () => {
const wrapper = shallowMount(ListGroups)
expect(wrapper.isVueInstance()).toBe(true)
})
it('is ListGroups', () => {
const wrapper = shallowMount(ListGroups)
expect(wrapper.is(ListGroups)).toBe(true)
})
it('should render correct content', () => {
const wrapper = mount(ListGroups)
expect(wrapper.find('header.card-header > div > strong').text()).toMatch('Bootstrap list group')
})
})