mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
|
Reveal.addEventListener( 'ready', function() {
|
||
|
|
||
|
QUnit.module( 'Markdown' );
|
||
|
|
||
|
QUnit.test( 'Vertical separator', function( assert ) {
|
||
|
assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
|
||
|
});
|
||
|
|
||
|
} );
|
||
|
|
||
|
Reveal.initialize();
|