diff options
author | Greg Denehy | 2017-04-30 17:42:16 +0930 |
---|---|---|
committer | Greg Denehy | 2017-04-30 17:42:16 +0930 |
commit | f8bc6791827b7a291081a32ef3d86f5e23d186e7 (patch) | |
tree | 87b004b3f1b0575757de6c42bace8f5330926ae0 /test/test-markdown-external.js | |
parent | 40a46e1c0c7836bdc26d25993a5c785be82e9973 (diff) | |
parent | 360bc940062711db9b8020ce4e848f6c37014481 (diff) |
Merge branch 'dev' into plugin-key-bindings
Diffstat (limited to 'test/test-markdown-external.js')
-rw-r--r-- | test/test-markdown-external.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/test-markdown-external.js b/test/test-markdown-external.js new file mode 100644 index 0000000..cab85c6 --- /dev/null +++ b/test/test-markdown-external.js @@ -0,0 +1,24 @@ + + +Reveal.addEventListener( 'ready', function() { + + QUnit.module( 'Markdown' ); + + test( 'Vertical separator', function() { + strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); + }); + + test( 'Horizontal separator', function() { + strictEqual( document.querySelectorAll( '.reveal .slides>section' ).length, 2, 'found two slides' ); + }); + + test( 'Language highlighter', function() { + strictEqual( document.querySelectorAll( '.hljs-keyword' ).length, 1, 'got rendered highlight tag.' ); + strictEqual( document.querySelector( '.hljs-keyword' ).innerHTML, 'var', 'the same keyword: var.' ); + }); + + +} ); + +Reveal.initialize(); + |