Copy import Simulator from 'slate-simulator' A simulator to help writing tests for Slate editors and plugins. By default the simulator does not include the core plugins as they have a lot of dependencies on browser-specific globals, so running them in CI environments is very hard. If you need the core plugins for your use case you need to import them manually.
Copy import Simulator from 'slate-simulator'
const value = ...
const plugins = [ ... ]
const simulator = new Simulator ({ value , plugins })
simulator
.focus ()
.beforeInput ({ data : 'H' })
.beforeInput ({ data : 'e' })
.beforeInput ({ data : 'l' })
.beforeInput ({ data : 'l' })
.beforeInput ({ data : 'o' })
.beforeInput ({ data : '!' })
.keyDown ({ key : 'Enter' })
const newValue = simulator .value Example with core plugins
beforeInput(event: Object) => Simulator
Simulator a beforeinput event with an event object.
blur(event: Object) => Simulator
Simulator a blur event with an event object.
copy(event: Object) => Simulator
Simulator a copy event with an event object.
cut(event: Object) => Simulator
Simulator a cut event with an event object.
drop(event: Object) => Simulator
Simulator a drop event with an event object.
focus(event: Object) => Simulator
Simulator a focus event with an event object.
keyDown(event: Object) => Simulator
Simulator a keyDown event with an event object.
select(event: Object) => Simulator
Simulator a select event with an event object.