diff options
author | Hakim El Hattab | 2018-01-24 15:52:40 +0100 |
---|---|---|
committer | GitHub | 2018-01-24 15:52:40 +0100 |
commit | 4232f41abd73cd9490be689b9bbcdd6f1fa87c54 (patch) | |
tree | 222ac9d883a723ddc566e13413eed3ba6330c66d /test/test-markdown.js | |
parent | e3205a55beb640f376b8add0fbc406f0eb065248 (diff) | |
parent | f9d076663746ab29410e9c141a7b9e927e4eb5df (diff) |
Merge pull request #2080 from bnjmnt4n/update-deps
Update dependencies.
Diffstat (limited to 'test/test-markdown.js')
-rw-r--r-- | test/test-markdown.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/test/test-markdown.js b/test/test-markdown.js index d2bbba8..5ea8bf2 100644 --- a/test/test-markdown.js +++ b/test/test-markdown.js @@ -1,15 +1,11 @@ - - Reveal.addEventListener( 'ready', function() { QUnit.module( 'Markdown' ); - test( 'Vertical separator', function() { - strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); + QUnit.test( 'Vertical separator', function( assert ) { + assert.strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); }); - } ); Reveal.initialize(); - |