mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
c5b0301e87
* 👷 ✅ Editor tests Added acceptance tests for koenig markdown-like support. Added some unit tests for koenig located in the /lib/koenig/test-support directory.
16 lines
324 B
JavaScript
16 lines
324 B
JavaScript
export let editorShim = {
|
|
range: {
|
|
head: {
|
|
section: {
|
|
renderNode: {
|
|
_element: {
|
|
tagName: 'P'
|
|
}
|
|
},
|
|
isBlank: false
|
|
}
|
|
}
|
|
},
|
|
cursorDidChange: function() {}
|
|
};
|