diff options
author | Hakim El Hattab | 2013-08-27 09:25:02 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-27 09:25:02 -0400 |
commit | bba5a5d69ca1030bf065cdd196030ae87b31487e (patch) | |
tree | 3f7bdddc1f6308ef8991a4832d24df0418ad9e7c /test/test-markdown.js | |
parent | d9c94749380e941305f8b465bb40cd5713034f94 (diff) |
prep markdown test suite
Diffstat (limited to 'test/test-markdown.js')
-rw-r--r-- | test/test-markdown.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test-markdown.js b/test/test-markdown.js new file mode 100644 index 0000000..d2bbba8 --- /dev/null +++ b/test/test-markdown.js @@ -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(); + |