2018-12-06 12:05:35 +11:00
|
|
|
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-10 09:21:52 +11:00
|
|
|
router.push('/~/main/all')
|
2018-12-06 12:05:35 +11:00
|
|
|
|
2018-12-07 05:03:52 +11:00
|
|
|
const matchedComponents = router.getMatchedComponents()
|
2018-12-06 12:05:35 +11:00
|
|
|
|
2018-12-07 05:03:52 +11:00
|
|
|
expect(matchedComponents[0].components.hasOwnProperty('Timeline'))
|
2018-12-06 12:05:35 +11:00
|
|
|
})
|
|
|
|
|
|
|
|
it('user\'s profile', () => {
|
|
|
|
router.push('/fake-user-name')
|
|
|
|
|
2018-12-07 05:03:52 +11:00
|
|
|
const matchedComponents = router.getMatchedComponents()
|
2018-12-06 12:05:35 +11:00
|
|
|
|
2018-12-07 05:03:52 +11:00
|
|
|
expect(matchedComponents[0].components.hasOwnProperty('UserProfile'))
|
2018-12-06 12:05:35 +11:00
|
|
|
})
|
|
|
|
})
|