diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-05-23 14:40:54 +0200 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2016-05-23 17:12:21 +0200 |
commit | bb522c6efd9a02e611014038566b15feb28da0c8 (patch) | |
tree | 6f1f7845b7c905a3db9c21a2f719d34de9a775e3 /docs/com/test/test-markdown.js | |
parent | 1ee1c30e539c02924c34bfeb2dd260993f0481b4 (diff) |
Add framework for presentations
Change-Id: I8ba24fb4b2a3a6c8d8c69f15a1fd9259aea4ab6c
Signed-off-by: Morgan Richomme <morgan.richomme@orange.com>
Diffstat (limited to 'docs/com/test/test-markdown.js')
-rwxr-xr-x | docs/com/test/test-markdown.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/com/test/test-markdown.js b/docs/com/test/test-markdown.js new file mode 100755 index 000000000..d2bbba867 --- /dev/null +++ b/docs/com/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(); + |