12345678910111213141516171819202122232425262728293031323334353637 |
- 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')
- const matchedComponents = router.getMatchedComponents()
- expect(matchedComponents[0].components.hasOwnProperty('Timeline')).to.eql(true)
- })
- it('user\'s profile', () => {
- router.push('/fake-user-name')
- const matchedComponents = router.getMatchedComponents()
- expect(matchedComponents[0].components.hasOwnProperty('UserCardContent')).to.eql(true)
- })
- it('user\'s profile at /users', () => {
- router.push('/users/fake-user-name')
- const matchedComponents = router.getMatchedComponents()
- expect(matchedComponents[0].components.hasOwnProperty('UserCardContent')).to.eql(true)
- })
- })
|