mediawiki-extensions-Visual.../tests/ve/dm/ve.dm.DocumentSynchronizer.test.js
Catrope 748b34cc49 ve2 -> ve in the tests directory too
Change-Id: I30b56b1c43202d8cb6af397d2813b19b1a71d30e
2012-06-19 18:36:34 -07:00

26 lines
855 B
JavaScript

module( 've.dm.DocumentSynchronizer' );
/* Tests */
test( 'getDocument', 1, function() {
var doc = new ve.dm.Document( ve.dm.example.data.slice( 0 ) ),
ds = new ve.dm.DocumentSynchronizer( doc );
strictEqual( ds.getDocument(), doc );
} );
test( 'synchronize', 2, function() {
var doc = new ve.dm.Document( ve.dm.example.data.slice( 0 ) ),
ds = new ve.dm.DocumentSynchronizer( doc );
// Annotate "a" with bold formatting
doc.data[1] = ['a', { '{"type":"bold"}': { 'type': 'bold' } }];
ds.pushAnnotation( new ve.Range( 1, 2 ) );
doc.getDocumentNode().getChildren()[0].getChildren()[0].on( 'update', function() {
ok( true, 'annotations trigger update events' );
} );
doc.getDocumentNode().getChildren()[0].getChildren()[0].on( 'annotation', function() {
ok( true, 'annotations trigger annotation events' );
} );
ds.synchronize();
} );