akkoma-fe/test/unit/specs/boot/routes.spec.js

30 lines
699 B
JavaScript
Raw Normal View History

import routes from 'src/boot/routes'
import { createLocalVue } from '@vue/test-utils'
import VueRouter from 'vue-router'
const localVue = createLocalVue()
localVue.use(VueRouter)
describe('routes', () => {
const router = new VueRouter({
mode: 'abstract',
routes: routes({})
})
it('root path', () => {
2018-12-09 22:21:52 +00:00
router.push('/~/main/all')
2018-12-06 18:03:52 +00:00
const matchedComponents = router.getMatchedComponents()
2018-12-06 18:03:52 +00:00
expect(matchedComponents[0].components.hasOwnProperty('Timeline'))
})
it('user\'s profile', () => {
router.push('/fake-user-name')
2018-12-06 18:03:52 +00:00
const matchedComponents = router.getMatchedComponents()
2018-12-06 18:03:52 +00:00
expect(matchedComponents[0].components.hasOwnProperty('UserProfile'))
})
})