UNPKG
@technik-sde/prosemirror-recreate-transform
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
Create a set of steps transforming one prosemirror json document to another
@technik-sde/prosemirror-recreate-transform
/
test
/
mocha.test.ts
8 lines
(5 loc)
•
244 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ strict
as
assert }
from
"assert"
;
import
{ recreateTransform }
from
"../src/recreateTransform"
;
describe
(
"mocha setup"
,
() =>
{
it
(
"should import recreateTransform"
,
() =>
assert.
equal
(
typeof
recreateTransform,
"function"
)); });