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