Open kocka5 opened 4 years ago
Slate: 0.57.1
I created test, which failed:
/** @jsx jsx */ import { Transforms } from 'slate' import { jsx } from '../../..' export const run = editor => { Transforms.unwrapNodes(editor, { match: n => n.a }) } export const input = ( <editor> <block a> <block> <block a> <cursor /> word </block> </block> </block> </editor> ) export const output = ( <editor> <block> <cursor /> word </block> </editor> )
Thanks Pavel
Hey @kocka5 could you describe how this test failed?
maybe bug
Slate: 0.57.1
I created test, which failed:
Thanks Pavel