/** @jsx jsx */ import { Editor, Transforms } from 'slate'; import { jsx } from '../../../../../support/jsx'; export const input = ( Hello world! ); export const expected = ( Hello world! ); export function run(editor: Editor) { Transforms.removeNodes(editor, { at: [1] }); }