/** @jsx jsx */ import { Editor, Transforms } from 'slate'; import { jsx } from '../../../../../support/jsx'; export const input = (

Hello world!

Welcome to slate-yjs!
); export const expected = ( Hello world! Welcome to slate-yjs! ); export function run(editor: Editor) { Transforms.setNodes(editor, { type: 'unstyled', id: 'block2' }); }