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

46 lines
1 KiB
JavaScript
Raw Normal View History

2020-05-07 13:10:53 +00: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 13:10:53 +00:00
localVue.use(Vuex)
localVue.use(VueRouter)
2020-05-07 13:10:53 +00:00
const store = new Vuex.Store({
state: {
instance: {}
}
})
describe('routes', () => {
const router = new VueRouter({
mode: 'abstract',
2020-05-07 13:10:53 +00:00
routes: routes(store)
})
it('root path', () => {
router.push('/main/all')
2018-12-06 18:03:52 +00:00
const matchedComponents = router.getMatchedComponents()
2018-12-15 03:16:44 +00:00
expect(matchedComponents[0].components.hasOwnProperty('Timeline')).to.eql(true)
})
it('user\'s profile', () => {
router.push('/fake-user-name')
2018-12-06 18:03:52 +00:00
const matchedComponents = router.getMatchedComponents()
2019-03-05 19:13:22 +00: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 19:13:22 +00:00
expect(matchedComponents[0].components.hasOwnProperty('UserCard')).to.eql(true)
})
})