/** @jsx jsx */
import { Editor } from 'slate';
import { jsx } from '../../../../../support/jsx';
export const input = (
Hello !
);
export const expected = (
Hello world
!
);
export function run(editor: Editor) {
editor.addMark('bold', true);
editor.insertText('world');
}