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

68 lines
1.9 KiB
JavaScript
Raw Normal View History

import routes from 'src/boot/routes'
2022-03-22 17:56:54 +01:00
import { createRouter, createMemoryHistory } from 'vue-router'
import { createStore } from 'vuex'
2022-03-22 17:56:54 +01:00
const store = createStore({
2020-05-07 15:10:53 +02:00
state: {
instance: {}
}
})
describe('routes', () => {
2022-03-22 17:56:54 +01:00
const router = createRouter({
history: createMemoryHistory(),
2020-05-07 15:10:53 +02:00
routes: routes(store)
})
2022-03-22 17:56:54 +01:00
it('root path', async () => {
await router.push('/main/all')
2022-03-22 17:56:54 +01:00
const matchedComponents = router.currentRoute.value.matched
2022-07-31 11:36:02 +02:00
// eslint-disable-next-line no-prototype-builtins
2022-03-22 17:56:54 +01:00
expect(matchedComponents[0].components.default.components.hasOwnProperty('Timeline')).to.eql(true)
})
2022-03-22 17:56:54 +01:00
it('user\'s profile', async () => {
await router.push('/fake-user-name')
2022-03-22 17:56:54 +01:00
const matchedComponents = router.currentRoute.value.matched
2022-07-31 11:36:02 +02:00
// eslint-disable-next-line no-prototype-builtins
2022-03-22 17:56:54 +01:00
expect(matchedComponents[0].components.default.components.hasOwnProperty('UserCard')).to.eql(true)
})
2022-03-22 17:56:54 +01:00
it('user\'s profile at /users', async () => {
await router.push('/users/fake-user-name')
2022-03-22 17:56:54 +01:00
const matchedComponents = router.currentRoute.value.matched
2022-07-31 11:36:02 +02:00
// eslint-disable-next-line no-prototype-builtins
2022-03-22 17:56:54 +01:00
expect(matchedComponents[0].components.default.components.hasOwnProperty('UserCard')).to.eql(true)
})
2022-08-06 16:26:43 +02:00
it('list view', async () => {
await router.push('/lists')
const matchedComponents = router.currentRoute.value.matched
expect(matchedComponents[0].components.default.components.hasOwnProperty('ListsCard')).to.eql(true)
})
it('list timeline', async () => {
await router.push('/lists/1')
const matchedComponents = router.currentRoute.value.matched
expect(matchedComponents[0].components.default.components.hasOwnProperty('Timeline')).to.eql(true)
})
it('list edit', async () => {
await router.push('/lists/1/edit')
const matchedComponents = router.currentRoute.value.matched
expect(matchedComponents[0].components.default.components.hasOwnProperty('BasicUserCard')).to.eql(true)
})
})