1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-02-22 07:52:28 +01:00
reveal.js/test/test-markdown.js

16 lines
268 B
JavaScript
Raw Normal View History

2013-08-27 09:25:02 -04:00
Reveal.addEventListener( 'ready', function() {
QUnit.module( 'Markdown' );
test( 'Vertical separator', function() {
strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
});
} );
Reveal.initialize();