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
+20
View File
@@ -0,0 +1,20 @@
import Vue from 'vue'
import { shallowMount } from '@vue/test-utils'
import BootstrapVue from 'bootstrap-vue'
import Charts from '@/views/Charts'
Vue.use(BootstrapVue)
describe('Charts.vue', () => {
it('has a name', () => {
expect(Charts.name).toMatch('charts')
})
it('is Vue instance', () => {
const wrapper = shallowMount(Charts)
expect(wrapper.isVueInstance()).toBe(true)
})
it('is Charts', () => {
const wrapper = shallowMount(Charts)
expect(wrapper.is(Charts)).toBe(true)
})
})