mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-12 12:02:26 +03:00
14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
import { renderToString } from '@vue/server-test-utils'
|
|
import { charset } from '../src/elements/charset'
|
|
|
|
const renderOptions = {
|
|
propsData: {
|
|
value: 'utf-8'
|
|
}
|
|
}
|
|
|
|
test('charset', async () => {
|
|
const str = await renderToString(charset, renderOptions)
|
|
expect(str).toMatchSnapshot()
|
|
})
|