presentations

Presentations
Log | Files | Refs

test-markdown.js (285B)


      1 Reveal.addEventListener( 'ready', function() {
      2 
      3 	QUnit.module( 'Markdown' );
      4 
      5 	QUnit.test( 'Vertical separator', function( assert ) {
      6 		assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
      7 	});
      8 
      9 } );
     10 
     11 Reveal.initialize();