Merge pull request #5648 from nextcloud/test/noid/message-add-location

Add Message.vue test for passing in geo-location object
This commit is contained in:
marco 2021-05-20 18:43:56 +02:00 коммит произвёл GitHub
Родитель 533d2dc477 bc039cd9c6
Коммит 2f59f33d02
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -11,6 +11,7 @@ import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
import Mention from './MessagePart/Mention'
import FilePreview from './MessagePart/FilePreview'
import DeckCard from './MessagePart/DeckCard'
import Location from './MessagePart/Location'
import DefaultParameter from './MessagePart/DefaultParameter'
import { findActionButton } from '../../../../test-helpers'
@ -375,6 +376,24 @@ describe('Message.vue', () => {
)
})
test('renders geo locations', () => {
const params = {
'geo-location': {
metadata: '{id:123}',
type: 'geo-location',
},
}
renderRichObject(
'{geo-location}',
params, {
'geo-location': {
component: Location,
props: params['geo-location'],
},
}
)
})
test('renders other rich objects', () => {
const params = {
'actor': {