test-markdown.js 268 B

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