yandere_fe/test/unit/specs/boot/routes.spec.js

30 lines
729 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 14:21:52 -08:00
router.push('/~/main/all')
2018-12-06 10:03:52 -08:00
const matchedComponents = router.getMatchedComponents()
2018-12-14 19:16:44 -08:00
expect(matchedComponents[0].components.hasOwnProperty('Timeline')).to.eql(true)
})
it('user\'s profile', () => {
router.push('/fake-user-name')
2018-12-06 10:03:52 -08:00
const matchedComponents = router.getMatchedComponents()
2018-12-16 14:53:21 -08:00
expect(matchedComponents[0].components.hasOwnProperty('UserCardContent')).to.eql(true)
})
})