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-26 04:43: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-15 14:16:44 +11:00
|
|
|
expect(matchedComponents[0].components.hasOwnProperty('Timeline')).to.eql(true)
|
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
|
|
|
|
2019-03-06 06:13:22 +11:00
|
|
|
expect(matchedComponents[0].components.hasOwnProperty('UserCard')).to.eql(true)
|
2018-12-06 12:05:35 +11:00
|
|
|
})
|
2018-12-26 04:43:52 +11:00
|
|
|
|
|
|
|
it('user\'s profile at /users', () => {
|
|
|
|
router.push('/users/fake-user-name')
|
|
|
|
|
|
|
|
const matchedComponents = router.getMatchedComponents()
|
|
|
|
|
2019-03-06 06:13:22 +11:00
|
|
|
expect(matchedComponents[0].components.hasOwnProperty('UserCard')).to.eql(true)
|
2018-12-26 04:43:52 +11:00
|
|
|
})
|
2018-12-06 12:05:35 +11:00
|
|
|
})
|