1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-23 14:46:48 +01:00
elk/tests/content.test.ts
2022-11-25 16:30:38 +08:00

22 lines
584 B
TypeScript

import type { Emoji } from 'masto'
import { describe, expect, it } from 'vitest'
import { renderToString } from 'vue/server-renderer'
import { contentToVNode } from '~/composables/content'
async function render(content: string, emojis?: Record<string, Emoji>) {
const vnode = contentToVNode(content, emojis)
const html = (await renderToString(vnode))
.replace(/<!--[\[\]]-->/g, '')
return {
vnode,
html,
}
}
describe('rich-content', () => {
it('plain', async () => {
const { html } = await render('Hello\nWorld')
expect(html).toMatchSnapshot()
})
})