/** @jsx jsx */
import { Editor } from 'slate';
import { jsx } from '../../../../../support/jsx';
export const input = (
Hello world!
);
export const expected = (
Hello world!
Welcome to slate-yjs!
);
export function run(editor: Editor) {
editor.insertText('Welcome to slate-yjs!');
}