7
mirror of https://github.com/Hack-a-Day/Vectorscope.git synced 2024-12-23 06:09:31 +00:00
Vectorscope/docs/badge_talk_2023/reveal.js/test/test-markdown.js
2023-11-04 00:22:42 +01:00

16 lines
268 B
JavaScript

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();