chore: rename folders

This commit is contained in:
Łukasz Holeczek
2018-03-04 12:33:16 +01:00
parent 4be9d2dce2
commit 0347970e65
271 changed files with 0 additions and 0 deletions
@@ -0,0 +1,11 @@
import Vue from 'vue'
import Dashboard from '@/views/Dashboard'
describe('Dashboard', () => {
it('should render correct contents', () => {
const Constructor = Vue.extend(Dashboard)
const vm = new Constructor().$mount()
expect(vm.$el.querySelector('.text-info').textContent)
.to.equal('Hello World')
})
})