1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-09-02 11:12:47 +02:00

prep markdown test suite

This commit is contained in:
Hakim El Hattab
2013-08-27 09:25:02 -04:00
parent d9c9474938
commit bba5a5d69c
2 changed files with 67 additions and 0 deletions

15
test/test-markdown.js Normal file
View File

@@ -0,0 +1,15 @@
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();