1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-04-06 14:32:48 +02:00

Add failing unit test

This commit is contained in:
Samy Pessé 2016-12-02 12:57:14 +01:00
parent b79b249b82
commit 238ed2b3ab
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,30 @@
import assert from 'assert'
export default function (state) {
const { document, selection } = state
const texts = document.getTexts()
// The first text is the one arround the inline void
const second = texts.get(1)
const range = selection.merge({
anchorKey: second.key,
anchorOffset: 0,
focusKey: second.key,
focusOffset: 0
})
const next = state
.transform()
.moveTo(range)
.wrapInline({
type: 'link'
})
.apply()
assert.deepEqual(
next.selection.toJS(),
range.toJS()
)
return next
}

View File

@ -0,0 +1,9 @@
nodes:
- kind: block
type: paragraph
nodes:
- kind: inline
key: image
isVoid: true
type: image

View File

@ -0,0 +1,11 @@
nodes:
- kind: block
type: paragraph
nodes:
- kind: inline
type: link
nodes:
- kind: inline
isVoid: true
type: image