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

46 lines
1.0 KiB
JavaScript
Raw Normal View History

2020-05-07 15:10:53 +02: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 15:10:53 +02:00
localVue.use(Vuex)
localVue.use(VueRouter)
2020-05-07 15:10:53 +02:00
const store = new Vuex.Store({
state: {
instance: {}
}
})
describe('routes', () => {
const router = new VueRouter({
mode: 'abstract',
2020-05-07 15:10:53 +02:00
routes: routes(store)
})
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)
})
})