Files
tiptap/tests/cypress/integration/core/editorProps.spec.ts
Philipp Kühn 80296aa8d0 refactoring
2021-08-09 17:24:18 +02:00

36 lines
972 B
TypeScript

/// <reference types="cypress" />
import { Editor } from '@tiptap/core'
import Document from '@tiptap/extension-document'
import Paragraph from '@tiptap/extension-paragraph'
import Text from '@tiptap/extension-text'
describe('editorProps', () => {
it('editorProps can be set while constructing Editor', () => {
function transformPastedHTML(html: string) {
return html
}
const editor = new Editor({
extensions: [Document, Paragraph, Text],
editorProps: { transformPastedHTML },
})
expect(transformPastedHTML).to.eq(editor.view.props.transformPastedHTML)
})
it('editorProps can be set through setOptions', () => {
function transformPastedHTML(html: string) {
return html
}
const editor = new Editor({
extensions: [Document, Paragraph, Text],
})
editor.setOptions({ editorProps: { transformPastedHTML } })
expect(transformPastedHTML).to.eq(editor.view.props.transformPastedHTML)
})
})