Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
1837 views
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();
12
13