1
0
Fork 0
editiCollaborativo/static/reveal.js/test/test-markdown.js

12 lines
285 B
JavaScript
Raw Normal View History

2017-03-02 01:09:54 +01:00
Reveal.addEventListener( 'ready', function() {
QUnit.module( 'Markdown' );
2019-06-13 12:31:37 +02:00
QUnit.test( 'Vertical separator', function( assert ) {
assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
2017-03-02 01:09:54 +01:00
});
} );
Reveal.initialize();