aboutsummaryrefslogtreecommitdiff
path: root/test/test-markdown.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2013-08-27 09:25:02 -0400
committerHakim El Hattab <hakim.elhattab@gmail.com>2013-08-27 09:25:02 -0400
commitbba5a5d69ca1030bf065cdd196030ae87b31487e (patch)
tree3f7bdddc1f6308ef8991a4832d24df0418ad9e7c /test/test-markdown.js
parentd9c94749380e941305f8b465bb40cd5713034f94 (diff)
downloadfosdem-2018-presentation-bba5a5d69ca1030bf065cdd196030ae87b31487e.tar
fosdem-2018-presentation-bba5a5d69ca1030bf065cdd196030ae87b31487e.tar.gz
prep markdown test suite
Diffstat (limited to 'test/test-markdown.js')
-rw-r--r--test/test-markdown.js15
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();
+