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

47 lines
1.1 KiB
JavaScript
Raw Normal View History

2020-05-07 23:10:53 +10:00
import Vuex from 'vuex'
import routes from 'src/boot/routes'
import { createLocalVue } from '@vue/test-utils'
import VueRouter from 'vue-router'
const localVue = createLocalVue()
2020-05-07 23:10:53 +10:00
localVue.use(Vuex)
localVue.use(VueRouter)
2020-05-07 23:10:53 +10:00
const store = new Vuex.Store({
state: {
2021-02-03 00:18:40 +11:00
instance: { private: false },
users: {}
2020-05-07 23:10:53 +10:00
}
})
2021-02-23 02:22:15 +11:00
describe('routes', () => {
const router = new VueRouter({
mode: 'abstract',
2020-05-07 23:10:53 +10:00
routes: routes(store)
})
it('root path', () => {
router.push('/main/all')
2018-12-07 05:03:52 +11:00
const matchedComponents = router.getMatchedComponents()
2018-12-15 14:16:44 +11:00
expect(matchedComponents[0].components.hasOwnProperty('Timeline')).to.eql(true)
})
it('user\'s profile', () => {
router.push('/fake-user-name')
2018-12-07 05:03:52 +11:00
const matchedComponents = router.getMatchedComponents()
2019-03-06 06:13:22 +11: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-06 06:13:22 +11:00
expect(matchedComponents[0].components.hasOwnProperty('UserCard')).to.eql(true)
})
})