Move old routes to /p, use /nickname for user profiles
This commit is contained in:
parent
c3c75e0702
commit
6532462b95
13 changed files with 96 additions and 48 deletions
29
test/unit/specs/boot/routes.spec.js
Normal file
29
test/unit/specs/boot/routes.spec.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
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('/p/main/all')
|
||||
|
||||
const mathcedComponents = router.getMatchedComponents()
|
||||
|
||||
expect(mathcedComponents[0].components.hasOwnProperty('Timeline'))
|
||||
})
|
||||
|
||||
it('user\'s profile', () => {
|
||||
router.push('/fake-user-name')
|
||||
|
||||
const mathcedComponents = router.getMatchedComponents()
|
||||
|
||||
expect(mathcedComponents[0].components.hasOwnProperty('UserProfile'))
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue