mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-12 16:59:01 +08:00
30 lines
668 B
TypeScript
30 lines
668 B
TypeScript
|
/// <reference types="cypress" />
|
||
|
|
||
|
import { generateHTML } from 'packages/html/src/index'
|
||
|
import Document from '@tiptap/extension-document'
|
||
|
import Paragraph from '@tiptap/extension-paragraph'
|
||
|
import Text from '@tiptap/extension-text'
|
||
|
|
||
|
describe('generateHTML', () => {
|
||
|
it('generate HTML from JSON without an editor instance', () => {
|
||
|
const json = {
|
||
|
type: 'doc',
|
||
|
content: [{
|
||
|
type: 'paragraph',
|
||
|
content: [{
|
||
|
type: 'text',
|
||
|
text: 'Example Text',
|
||
|
}],
|
||
|
}],
|
||
|
}
|
||
|
|
||
|
const html = generateHTML(json, [
|
||
|
Document,
|
||
|
Paragraph,
|
||
|
Text,
|
||
|
])
|
||
|
|
||
|
expect(html).to.eq('<p>Example Text</p>')
|
||
|
})
|
||
|
})
|