First commit

This commit is contained in:
2022-02-27 15:37:42 +01:00
commit e474549aad
397 changed files with 151157 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import Vue from 'vue'
import c404 from '@/components/404.vue'
describe('404.vue', () => {
it('should render correct contents', () => {
const Constructor = Vue.extend(c404)
const vm = new Constructor().$mount()
expect(vm.$el.querySelector('h1').textContent)
.to.equal('You are lost.')
})
})