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

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