/** @jsx jsx */ import { Editor, Transforms } from 'slate'; import { jsx } from '../../../../../../support/jsx'; export const input = ( Hello world! ); export const expected = ( ); export function run(editor: Editor) { Editor.withoutNormalizing(editor, () => { Transforms.setNodes( editor, { type: 'unordered-list-item' }, { at: [0], } ); Transforms.moveNodes(editor, { at: [0], to: [1, 1], }); }); }