diff --git a/packages/slate/test/interfaces/Editor/positions/all/inline-normalized.tsx b/packages/slate/test/interfaces/Editor/positions/all/inline-normalized.tsx new file mode 100644 index 000000000..40760372f --- /dev/null +++ b/packages/slate/test/interfaces/Editor/positions/all/inline-normalized.tsx @@ -0,0 +1,29 @@ +/** @jsx jsx */ +import { Editor } from 'slate' +import { jsx } from '../../../..' + +export const input = ( + + + + o + + + +) + +export const test = editor => { + return Array.from( + Editor.positions(editor, { + at: Editor.range(editor, []), + unit: 'character', + }) + ) +} + +// this is the output but it's incorrect. +// there should be two positions, before the character and after the character +export const output = [ + { path: [0, 0], offset: 0 }, + { path: [0, 1, 0], offset: 1 }, +]